aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2016-09-09 17:28:40 +0200
committerGitHub <noreply@github.com>2016-09-09 17:28:40 +0200
commit441c1107aa3772bdd21f125c4f9be6c624cfcb45 (patch)
tree83d4839ff5189c5e4b287d6635c8adee1b3eb30c /server/sonar-web/src/main/js
parent4f877fb1d54b1c4127d9063ca48c523cb51daccf (diff)
downloadsonarqube-441c1107aa3772bdd21f125c4f9be6c624cfcb45.tar.gz
sonarqube-441c1107aa3772bdd21f125c4f9be6c624cfcb45.zip
correct wording (#1230)
adress -> address 127.0.1 -> 127.0.0.1
Diffstat (limited to 'server/sonar-web/src/main/js')
-rw-r--r--server/sonar-web/src/main/js/apps/settings/serverId/ServerIdApp.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/settings/serverId/ServerIdApp.js b/server/sonar-web/src/main/js/apps/settings/serverId/ServerIdApp.js
index 3a5e9a8ec2c..afeeca6c566 100644
--- a/server/sonar-web/src/main/js/apps/settings/serverId/ServerIdApp.js
+++ b/server/sonar-web/src/main/js/apps/settings/serverId/ServerIdApp.js
@@ -33,7 +33,7 @@ export default class ServerIdApp extends React.Component {
loading: true,
organization: '',
ip: '',
- validIpAdresses: []
+ validIpAddresses: []
};
componentDidMount () {
@@ -132,7 +132,7 @@ export default class ServerIdApp extends React.Component {
<div className="modal-field-description">
{translate('server_id_configuration.ip.desc')}
<ul className="list-styled">
- {this.state.validIpAdresses.map(ip => (
+ {this.state.validIpAddresses.map(ip => (
<li key={ip} className="little-spacer-top">{ip}</li>
))}
</ul>