diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-10-31 15:15:30 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-10-31 15:15:40 +0100 |
commit | 6940d7168f1425a58ffb5b80dd71711b7897105c (patch) | |
tree | aa3a1114c105ea27aac131a071e71b3a3351fa8b | |
parent | 3a91a55e84414f8401d9eb0aadc7382d5b4662d9 (diff) | |
download | sonarqube-6940d7168f1425a58ffb5b80dd71711b7897105c.tar.gz sonarqube-6940d7168f1425a58ffb5b80dd71711b7897105c.zip |
SONAR-55 Add support of views in bubble chart
-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 1baea7f4ed5..4f2c1c71d9d 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 = {:qualifiers => ['FIL', 'CLA'], :baseId => @project.id} + filter.criteria = {:scopes => ['FIL'], :baseId => @project.id} filter.metrics = [xMetric.name, yMetric.name, sizeMetric.name] filter.execute(self, :user => current_user) filter.rows.each do |row| |