diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-12-10 19:09:56 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-12-10 19:09:56 +0100 |
commit | 58a70345f43956bece6089578c993b8aafccf2b3 (patch) | |
tree | 19ab5012faf7afc05a2fc9600ac37439bbf0d58e | |
parent | 9c06f3b8c54efcc09db06265ee36e36fff2e44c1 (diff) | |
download | sonarqube-58a70345f43956bece6089578c993b8aafccf2b3.tar.gz sonarqube-58a70345f43956bece6089578c993b8aafccf2b3.zip |
SONAR-3825 remove the description from filter widget
2 files changed, 0 insertions, 2 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measure_filter_list.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measure_filter_list.html.erb index c92b0abdbd8..dc3fcc37f0c 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measure_filter_list.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measure_filter_list.html.erb @@ -10,7 +10,6 @@ filter.execute(self, :user => current_user) @widget_title = link_to h(filter.name), {:controller => 'measures', :action => 'filter', :id => filter.id, :display => 'list'} %> - <% if filter.description.present? %><p><%= h filter.description -%></p><% end %> <%= render :partial => "measures/display_#{filter.display.key}", :locals => {:edit_mode => false, :widget => widget, :filter => filter} %> <% end diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measure_filter_treemap.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measure_filter_treemap.html.erb index d1c59cb5ad0..9b8ac706d1e 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measure_filter_treemap.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measure_filter_treemap.html.erb @@ -21,7 +21,6 @@ @widget_title = link_to h(filter.name), url_options %> - <% if filter.description.present? %><p><%= h filter.description -%></p><% end %> <%= render :partial => "measures/display_#{filter.display.key}", :locals => {:edit_mode => false, :widget => widget, :filter => filter} %> <% end |