aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/app/components/GlobalFooterBranding.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/app/components/GlobalFooterBranding.js')
-rw-r--r--server/sonar-web/src/main/js/app/components/GlobalFooterBranding.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/server/sonar-web/src/main/js/app/components/GlobalFooterBranding.js b/server/sonar-web/src/main/js/app/components/GlobalFooterBranding.js
index 1d80c194eaa..1ca8a72c20a 100644
--- a/server/sonar-web/src/main/js/app/components/GlobalFooterBranding.js
+++ b/server/sonar-web/src/main/js/app/components/GlobalFooterBranding.js
@@ -21,17 +21,17 @@
import React from 'react';
export default class GlobalFooterBranding extends React.Component {
- render () {
+ render() {
return (
- <div>
- This application is based on
- {' '}
- <a href="http://www.sonarqube.org/" title="SonarQube&trade;">SonarQube&trade;</a>
- {' '}
- but is <strong>not</strong> an official version provided by
- {' '}
- <a href="http://www.sonarsource.com" title="SonarSource SA">SonarSource SA</a>.
- </div>
+ <div>
+ This application is based on
+ {' '}
+ <a href="http://www.sonarqube.org/" title="SonarQubeâ„¢">SonarQube&trade;</a>
+ {' '}
+ but is <strong>not</strong> an official version provided by
+ {' '}
+ <a href="http://www.sonarsource.com" title="SonarSource SA">SonarSource SA</a>.
+ </div>
);
}
}