From 4e2b9d703f3b3d3f64a25ff9ae33eb56210c1715 Mon Sep 17 00:00:00 2001 From: Berna Castro Date: Thu, 15 Dec 2016 13:07:35 +0100 Subject: Don't group projects on dashboard#issues --- app/views/shared/_issues.html.haml | 16 +++++----------- 1 file 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' -- cgit v1.2.1