aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/projectsManagement/Search.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projectsManagement/Search.tsx')
-rw-r--r--server/sonar-web/src/main/js/apps/projectsManagement/Search.tsx15
1 files changed, 1 insertions, 14 deletions
diff --git a/server/sonar-web/src/main/js/apps/projectsManagement/Search.tsx b/server/sonar-web/src/main/js/apps/projectsManagement/Search.tsx
index 914883f8359..69f0f958080 100644
--- a/server/sonar-web/src/main/js/apps/projectsManagement/Search.tsx
+++ b/server/sonar-web/src/main/js/apps/projectsManagement/Search.tsx
@@ -68,8 +68,7 @@ export default class Search extends React.PureComponent<Props, State> {
getTypeOptions = () => [
{ value: Type.All, label: 'All' },
- { value: Type.Provisioned, label: 'Provisioned' },
- { value: Type.Ghosts, label: 'Ghosts' }
+ { value: Type.Provisioned, label: 'Provisioned' }
];
getQualifierOptions = () => {
@@ -123,17 +122,6 @@ export default class Search extends React.PureComponent<Props, State> {
return <Checkbox checked={checked} thirdState={thirdState} onCheck={this.onCheck} />;
};
- renderGhostsDescription = () => {
- if (this.props.type !== Type.Ghosts || !this.props.ready) {
- return null;
- }
- return (
- <div className="spacer-top alert alert-info">
- {translate('bulk_deletion.ghosts.description')}
- </div>
- );
- };
-
renderQualifierFilter = () => {
const options = this.getQualifierOptions();
if (options.length < 2) {
@@ -201,7 +189,6 @@ export default class Search extends React.PureComponent<Props, State> {
</tr>
</tbody>
</table>
- {this.renderGhostsDescription()}
{this.state.bulkApplyTemplateModal &&
<BulkApplyTemplateModal