aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>2017-10-25 16:49:00 +0200
committerGrégoire Aubert <gregoire.aubert@sonarsource.com>2017-10-26 11:38:26 +0200
commitcd1400b1411e039826c8267d135234caf6a71a71 (patch)
tree04cfc31d7926e1b3962affdde0eb42081928f7a3 /server
parenta27abe36c63f21ed0e8c4b5adf05c36187da7f4a (diff)
downloadsonarqube-cd1400b1411e039826c8267d135234caf6a71a71.tar.gz
sonarqube-cd1400b1411e039826c8267d135234caf6a71a71.zip
Update wording for search engine in system info
Diffstat (limited to 'server')
-rw-r--r--server/sonar-web/src/main/js/apps/system/components/PageActions.tsx4
-rw-r--r--server/sonar-web/src/main/js/apps/system/components/__tests__/__snapshots__/PageActions-test.tsx.snap2
-rw-r--r--server/sonar-web/src/main/js/apps/system/components/__tests__/__snapshots__/StandaloneSysInfos-test.tsx.snap2
-rw-r--r--server/sonar-web/src/main/js/apps/system/utils.ts2
4 files changed, 5 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/apps/system/components/PageActions.tsx b/server/sonar-web/src/main/js/apps/system/components/PageActions.tsx
index 60d9e1ba6aa..c27c7dd4521 100644
--- a/server/sonar-web/src/main/js/apps/system/components/PageActions.tsx
+++ b/server/sonar-web/src/main/js/apps/system/components/PageActions.tsx
@@ -120,7 +120,7 @@ export default class PageActions extends React.PureComponent<Props, State> {
id="es-logs-link"
download="sonarqube_es.log"
target="_blank">
- Elasticsearch
+ Search Engine
</a>
</li>
<li>
@@ -153,7 +153,7 @@ export default class PageActions extends React.PureComponent<Props, State> {
</button>
)}
{this.props.canRestart &&
- this.state.openRestartForm && <RestartForm onClose={this.handleServerRestartClose} />}
+ this.state.openRestartForm && <RestartForm onClose={this.handleServerRestartClose} />}
{this.state.openLogsLevelForm && (
<ChangeLogLevelForm
infoMsg={translate(
diff --git a/server/sonar-web/src/main/js/apps/system/components/__tests__/__snapshots__/PageActions-test.tsx.snap b/server/sonar-web/src/main/js/apps/system/components/__tests__/__snapshots__/PageActions-test.tsx.snap
index 7677001d16f..d665e37ec15 100644
--- a/server/sonar-web/src/main/js/apps/system/components/__tests__/__snapshots__/PageActions-test.tsx.snap
+++ b/server/sonar-web/src/main/js/apps/system/components/__tests__/__snapshots__/PageActions-test.tsx.snap
@@ -64,7 +64,7 @@ exports[`should render correctly 1`] = `
id="es-logs-link"
target="_blank"
>
- Elasticsearch
+ Search Engine
</a>
</li>
<li>
diff --git a/server/sonar-web/src/main/js/apps/system/components/__tests__/__snapshots__/StandaloneSysInfos-test.tsx.snap b/server/sonar-web/src/main/js/apps/system/components/__tests__/__snapshots__/StandaloneSysInfos-test.tsx.snap
index b7a2d4285c1..ba562c42b3b 100644
--- a/server/sonar-web/src/main/js/apps/system/components/__tests__/__snapshots__/StandaloneSysInfos-test.tsx.snap
+++ b/server/sonar-web/src/main/js/apps/system/components/__tests__/__snapshots__/StandaloneSysInfos-test.tsx.snap
@@ -45,7 +45,7 @@ exports[`should render correctly 1`] = `
}
/>
<HealthCard
- name="Search"
+ name="Search Engine"
onClick={[Function]}
open={false}
sysInfoData={
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 1f5367bd5f9..7048439a678 100644
--- a/server/sonar-web/src/main/js/apps/system/utils.ts
+++ b/server/sonar-web/src/main/js/apps/system/utils.ts
@@ -160,7 +160,7 @@ export function getStandaloneSecondarySections(sysInfoData: SysInfo): SysInfoSec
return {
Web: pickBy(sysInfoData, (_, key) => key.startsWith('Web')),
'Compute Engine': pickBy(sysInfoData, (_, key) => key.startsWith('Compute Engine')),
- Search: pickBy(sysInfoData, (_, key) => key.startsWith('Search'))
+ 'Search Engine': pickBy(sysInfoData, (_, key) => key.startsWith('Search'))
};
}