Commit d8f825ef authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #2103 from tsigo/issue_project_link_rebase

Add a link to each project on the Issues dashboard
parents 3d242a31 4db362f5
......@@ -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})
......
......@@ -7,6 +7,7 @@ class DashboardIssues < Spinach::FeatureSteps
issues.each do |issue|
page.should have_content(issue.title[0..10])
page.should have_content(issue.project.name)
page.should have_link(issue.project.name)
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment