]> source.dussan.org Git - sonarqube.git/commitdiff
Fix treemap
authorSimon Brandhof <simon.brandhof@gmail.com>
Tue, 14 Jun 2011 16:59:48 +0000 (18:59 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Tue, 14 Jun 2011 16:59:48 +0000 (18:59 +0200)
sonar-server/src/main/webapp/WEB-INF/app/helpers/metrics_helper.rb

index 2be31148e2a5346a57ca9fb65241859fa1b3bbd7..f94dddf81eef628ebcdec02c0db0aa5627903416 100644 (file)
@@ -26,7 +26,7 @@ module MetricsHelper
   def options_grouped_by_domain(metrics, selected_key='')
     metrics_per_domain={}
     metrics.each do |metric|
-      domain=metric.domain(true) || ''
+      domain=metric.domain || ''
       metrics_per_domain[domain]||=[]
       metrics_per_domain[domain]<<metric
     end
@@ -36,7 +36,7 @@ module MetricsHelper
       html += "<optgroup label=\"#{html_escape(domain)}\">"
       metrics_per_domain[domain].each do |m|
         selected_attr = " selected='selected'" if (m.key==selected_key || m.id==selected_key)
-        html += "<option value='#{html_escape(m.key)}'#{selected_attr}>#{html_escape(m.short_name(true))}</option>"
+        html += "<option value='#{html_escape(m.key)}'#{selected_attr}>#{html_escape(m.short_name)}</option>"
       end
       html += '</optgroup>'
     end