]> source.dussan.org Git - sonarqube.git/commitdiff
Fix quality flaw
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Thu, 8 Jan 2015 08:31:22 +0000 (09:31 +0100)
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Thu, 8 Jan 2015 08:31:22 +0000 (09:31 +0100)
server/sonar-web/src/main/js/widgets/widget.js

index 4a8b90e89a0fecc4699cc624ff439d0d9607e275..8b50080eb959e8f6acac42e02594fbe42cb97fb8 100644 (file)
@@ -47,7 +47,7 @@ window.SonarWidgets = window.SonarWidgets == null ? {} : window.SonarWidgets;
         if (typeof(response.components) === 'undefined' || response.components.length > 0) {
           that.widget = new SonarWidgets[that.type()]();
           that.widget.metricsPriority(that.metricsPriority());
-          that.widget.options(that.options())
+          that.widget.options(that.options());
           that.widget.metrics(response.metrics);
           that.widget.components(response.components);
           if(typeof(that.widget.parseSource) === 'function') {