]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2124 Fix display bug
authorFabrice Bellingard <bellingard@gmail.com>
Thu, 9 Feb 2012 10:02:47 +0000 (11:02 +0100)
committerFabrice Bellingard <bellingard@gmail.com>
Thu, 9 Feb 2012 10:02:47 +0000 (11:02 +0100)
sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_rule_param.html.erb

index ce6f11f42f404a22f610ab3673f560091b6dc194..806e15df641410e011b668720a1aa20066401171 100644 (file)
     <% 
        if active_rule && active_rule.overrides? && ancestor_active_rule
          ancestor_param = ancestor_active_rule.active_param_by_param_id(parameter.id)
-         ancestor_value = ancestor_param && ancestor_param.value ? ancestor_param.value : '(' + message('rules_configuration.parent_parameter.empty') + ')'
+         ancestor_value = ancestor_param && ancestor_param.value ? ancestor_param.value : ''
              
-         if ancestor_value && ancestor_value != param_value
-    %>
+         if ancestor_value != param_value
+    %>    
       <img src="<%= ApplicationController.root_context -%>/images/overrides.png" alt="Overrides parent definition" title="<%= message('rules_configuration.overrides_parent_definition') -%>" style="vertical-align: middle"/>
       <span class="form-val-note" style="font-weight: bold; vertical-align: middle;">
-        <%= message('rules_configuration.original_value') -%>: <%= ancestor_value -%>
+        <%= message('rules_configuration.original_value') -%>: <%= ancestor_value.blank? ? '(' + message('rules_configuration.parent_parameter.empty') + ')' : ancestor_value -%>
       </span>
     <% 
          end