aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps
diff options
context:
space:
mode:
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>2017-10-20 15:56:15 +0200
committerGrégoire Aubert <gregoire.aubert@sonarsource.com>2017-10-20 08:44:55 -0700
commit5e36feac9416523f4eb4fb94415db49e6ec01e7d (patch)
tree8c5fbe28154b12827dc343b30d109027e8db830f /server/sonar-web/src/main/js/apps
parentf4c02670dfda686bfd7dc22d7db8313659569630 (diff)
downloadsonarqube-5e36feac9416523f4eb4fb94415db49e6ec01e7d.tar.gz
sonarqube-5e36feac9416523f4eb4fb94415db49e6ec01e7d.zip
SONAR-9918 Remove plugins section on system info page for cluster nodes
Diffstat (limited to 'server/sonar-web/src/main/js/apps')
-rw-r--r--server/sonar-web/src/main/js/apps/system/utils.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/system/utils.ts b/server/sonar-web/src/main/js/apps/system/utils.ts
index 33b18d63120..ac7c62ee752 100644
--- a/server/sonar-web/src/main/js/apps/system/utils.ts
+++ b/server/sonar-web/src/main/js/apps/system/utils.ts
@@ -47,7 +47,13 @@ export const PLUGINS_FIELD = 'Plugins';
export const SETTINGS_FIELD = 'Settings';
export function ignoreInfoFields(sysInfoObject: SysValueObject): SysValueObject {
- return omit(sysInfoObject, [HEALTH_FIELD, HEALTHCAUSES_FIELD, 'Name', SETTINGS_FIELD]);
+ return omit(sysInfoObject, [
+ HEALTH_FIELD,
+ HEALTHCAUSES_FIELD,
+ 'Name',
+ PLUGINS_FIELD,
+ SETTINGS_FIELD
+ ]);
}
export function getHealth(sysInfoObject: SysValueObject): HealthType {