diff options
| author | Brett Walker <bwalker@gitlab.com> | 2019-06-13 18:55:45 -0500 |
|---|---|---|
| committer | Rajat Jain <rjain@gitlab.com> | 2019-06-24 11:49:05 +0530 |
| commit | e0483f5f41f519d92982242edadb0dc185104c73 (patch) | |
| tree | 2c3dc6f1e8e903deb66d172c98fd56d2d3b4c19a | |
| parent | 269a0c24b04150715e9cfcb4636f1e9ae0e70463 (diff) | |
| download | gitlab-ce-fe-issue-reorder.tar.gz | |
Add group-full-path to issue list containerfe-issue-reorder
| -rw-r--r-- | app/views/shared/_issues.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/_issues.html.haml b/app/views/shared/_issues.html.haml index 92ca728558c..a21dcabb485 100644 --- a/app/views/shared/_issues.html.haml +++ b/app/views/shared/_issues.html.haml @@ -1,6 +1,6 @@ - if @issues.to_a.any? .card.card-small.card-without-border - %ul.content-list.issues-list.issuable-list{ :class => ("manual-ordering" if @sort == 'relative_position') } + %ul.content-list.issues-list.issuable-list{ class: ("manual-ordering" if @sort == 'relative_position'), data: { group_full_path: @group&.full_path } } = render partial: 'projects/issues/issue', collection: @issues = paginate @issues, theme: "gitlab" - else |
