diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-06-01 17:59:21 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-06-01 17:59:21 +0200 |
commit | 6ce291ec34c4cb860c0395eded9b7582a0556f96 (patch) | |
tree | 72940d8c70261d8c86ab9bdf6ce67bc2afbfdcd6 /sonar-server | |
parent | 7289e004f966f833c9ee199a35e90e0af94296ac (diff) | |
download | sonarqube-6ce291ec34c4cb860c0395eded9b7582a0556f96.tar.gz sonarqube-6ce291ec34c4cb860c0395eded9b7582a0556f96.zip |
SONAR-2030 fix dashboard link from filters
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb index f15ce9380d4..6293514a26b 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb @@ -121,7 +121,7 @@ <%= trend_icon(measure, :empty => true) -%> <% end %> <% end %> - <% elsif column.on_name? %><%= qualifier_icon(root_snapshot) %> <%= link_to_resource(root_snapshot.project, h(root_snapshot.project.name(true)), {:dashboard => true, :title => root_snapshot.project.key}) %> + <% elsif column.on_name? %><%= qualifier_icon(root_snapshot) %> <%= link_to_resource(root_snapshot.project, h(root_snapshot.project.name(true)), {:filter => true, :title => root_snapshot.project.key, :period => @filter_context.period_index}) %> <% elsif column.on_date? %><%= human_short_date(root_snapshot.created_at) %> <% end %> </td> |