summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBerna Castro <bernacas@gmail.com>2016-12-15 13:07:35 +0100
committerOswaldo Ferreira <oswaldo@gitlab.com>2017-01-27 20:20:16 -0200
commit4e2b9d703f3b3d3f64a25ff9ae33eb56210c1715 (patch)
tree4125d6149da3a93391299c770dac4e2ceafcf42d
parentd2a2ba9381b3f3e11760434a2f963090ae071284 (diff)
downloadgitlab-ce-4e2b9d703f3b3d3f64a25ff9ae33eb56210c1715.tar.gz
Don't group projects on dashboard#issues
-rw-r--r--app/views/shared/_issues.html.haml16
1 files changed, 5 insertions, 11 deletions
diff --git a/app/views/shared/_issues.html.haml b/app/views/shared/_issues.html.haml
index 26b349e8a62..f4401300ceb 100644
--- a/app/views/shared/_issues.html.haml
+++ b/app/views/shared/_issues.html.haml
@@ -1,16 +1,10 @@
- if @issues.to_a.any?
- - @issues.group_by(&:project).each do |group|
- .panel.panel-default.panel-small
- - project = group[0]
- .panel-heading
- = link_to project.name_with_namespace, namespace_project_issues_path(project.namespace, project)
- - if can?(current_user, :create_issue, project)
- .pull-right
- = link_to 'New issue', new_namespace_project_issue_path(project.namespace, project)
+ .panel.panel-default.panel-small
+ %ul.content-list.issues-list
+ - @issues.each do |issue|
+ - project = issue.project
- %ul.content-list.issues-list
- - group[1].each do |issue|
- = render 'projects/issues/issue', issue: issue
+ = render 'projects/issues/issue', issue: issue
= paginate @issues, theme: "gitlab"
- else
= render 'shared/empty_states/issues'