diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-03-08 13:23:38 +0100 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2011-03-08 13:23:38 +0100 |
commit | 914d329ad4f75b0248c44fdfa0cea958a5388c8b (patch) | |
tree | d5d7a5f48e71517d21d476a2d9695a9354373247 /plugins/sonar-core-plugin/src | |
parent | 5434327a2cbdd535cd28e5abbd70ac89d5f7b5b5 (diff) | |
download | sonarqube-914d329ad4f75b0248c44fdfa0cea958a5388c8b.tar.gz sonarqube-914d329ad4f75b0248c44fdfa0cea958a5388c8b.zip |
SONAR-2218 improve UI
Diffstat (limited to 'plugins/sonar-core-plugin/src')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/code_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/code_coverage.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/code_coverage.html.erb index 79c0d1787fb..3e165313f01 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/code_coverage.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/code_coverage.html.erb @@ -40,7 +40,7 @@ new_line_coverage=measure('new_line_coverage') new_branch_coverage=measure('new_branch_coverage') %> <br/> - <h3>On new/changed code:</h3> + <h3>On new code:</h3> <% if new_lines.to_i>0 %> <% if new_coverage %> <p> @@ -48,7 +48,7 @@ </p> <% end %> <p> - <a href="<%= url_for_drilldown('new_lines_to_cover', :period => dashboard_configuration.period_index) -%>"><%= new_lines.to_i -%></a> new lines to cover + <a href="<%= url_for_drilldown('new_lines_to_cover', :period => dashboard_configuration.period_index) -%>"><%= new_lines.to_i -%></a> lines to cover </p> <% if new_line_coverage %> <p> |