summaryrefslogtreecommitdiff
path: root/app/views/dashboard/issues.html.haml
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-11-19 23:49:25 -0500
committerRobert Speicher <rspeicher@gmail.com>2012-11-28 11:00:02 -0500
commit4db362f5196710eab4c09fa394bc67b0d09f1ab8 (patch)
treed5a9d22f5fb3d7dafe169a020cb19e7a567f8bd0 /app/views/dashboard/issues.html.haml
parent3d242a3154644bb1fea1b70d2661cee4f3db342c (diff)
downloadgitlab-ce-4db362f5196710eab4c09fa394bc67b0d09f1ab8.tar.gz
Add a link to each project on the Issues dashboard
Diffstat (limited to 'app/views/dashboard/issues.html.haml')
-rw-r--r--app/views/dashboard/issues.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/dashboard/issues.html.haml b/app/views/dashboard/issues.html.haml
index e038582078d..e3093bcfe2a 100644
--- a/app/views/dashboard/issues.html.haml
+++ b/app/views/dashboard/issues.html.haml
@@ -13,7 +13,7 @@
- @issues.group_by(&:project).each do |group|
%div.ui-box
- @project = group[0]
- %h5= @project.name
+ %h5= link_to(@project.name, project_path(@project))
%ul.unstyled.issues_table
- group[1].each do |issue|
= render(partial: 'issues/show', locals: {issue: issue})