]> source.dussan.org Git - sonarqube.git/commitdiff
Fix quality flaws
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 9 Sep 2016 09:38:58 +0000 (11:38 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 9 Sep 2016 09:39:38 +0000 (11:39 +0200)
server/sonar-web/src/main/js/main/nav/global/global-nav-menu.js

index 05aadf80412e82ed9f67649a72f25cde30f8a120..cb6e50f9dd918dec1d0d4a275004eca47764ac28 100644 (file)
@@ -133,7 +133,7 @@ export default React.createClass({
   },
 
   renderMore () {
-    if (this.props.globalPages.length == 0) {
+    if (this.props.globalPages.length === 0) {
       return null;
     }
     const globalPages = this.props.globalPages.map(this.renderGlobalPageLink);