diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-05-23 14:23:54 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2014-05-23 14:23:54 +0200 |
commit | 78f8974574975db3aab61fb0addcc85def394892 (patch) | |
tree | 6961c7d05cd8ae625ea5500a88652af6777a9682 /plugins | |
parent | a0b4d3b10d08610ea87941c56987ac12565d0569 (diff) | |
download | sonarqube-78f8974574975db3aab61fb0addcc85def394892.tar.gz sonarqube-78f8974574975db3aab61fb0addcc85def394892.zip |
SONAR-5333 Fix labels inside it coverage widget
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/it_coverage.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/it_coverage.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/it_coverage.html.erb index 3a79a10b9b4..b39c4942f72 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/it_coverage.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/it_coverage.html.erb @@ -36,7 +36,7 @@ if it_branch_coverage %> <div class="widget-measure"> - <span class="widget-label"><%= message('widget.it-coverage.line_coverage.suffix') -%></span> + <span class="widget-label"><%= message('widget.it-coverage.branch_coverage.suffix') -%></span> <span class="nowrap"> <%= format_measure(it_branch_coverage, :url => url_for_drilldown('it_uncovered_conditions', :highlight => 'it_branch_coverage')) %> <%= dashboard_configuration.selected_period? ? format_variation(it_branch_coverage) : trend_icon(it_branch_coverage) -%> @@ -139,7 +139,7 @@ if overall_branch_coverage %> <div class="widget-measure"> - <span class="widget-label"><%= message('widget.overall-coverage.line_coverage.suffix') -%></span> + <span class="widget-label"><%= message('widget.overall-coverage.branch_coverage.suffix') -%></span> <span class="nowrap"> <%= format_measure(overall_branch_coverage, :url => url_for_drilldown('overall_uncovered_conditions', :highlight => 'overall_branch_coverage')) %> <%= dashboard_configuration.selected_period? ? format_variation(overall_branch_coverage) : trend_icon(overall_branch_coverage) -%> |