diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-11-06 13:04:35 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-11-06 13:08:49 +0100 |
commit | c8a7916470b2a72cfd110d17d9237f2931fcdbd0 (patch) | |
tree | 53f0f7d1e308fd35bf4ae604f0cb86c752d93c26 /plugins | |
parent | 7e4c5a386749131ca31c2f056ec831145ced3d06 (diff) | |
download | sonarqube-c8a7916470b2a72cfd110d17d9237f2931fcdbd0.tar.gz sonarqube-c8a7916470b2a72cfd110d17d9237f2931fcdbd0.zip |
Fix compatibility of bubble chart with developer cockpit
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/bubbleChart.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/bubbleChart.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/bubbleChart.html.erb index da8bfdf3c24..3ae4c304e2c 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/bubbleChart.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/bubbleChart.html.erb @@ -25,7 +25,7 @@ var bubbleChartData = [ <% filter = MeasureFilter.new - filter.criteria = {:scopes => ['FIL'], :baseId => @project.id} + filter.criteria = {:qualifiers => Api::Utils.java_facade.getResourceLeavesQualifiers(@project.qualifier).to_a, :baseId => @project.id} filter.metrics = [xMetric.name, yMetric.name, sizeMetric.name] filter.execute(self, :user => current_user) filter.rows.each do |row| |