summaryrefslogtreecommitdiff
path: root/app/views/groups
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-11-06 21:06:44 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-11-06 21:06:44 +0000
commitcf85de264d049f1f8ff14b23f38f8331ae4c60fa (patch)
tree73188488af9f2a6d40df4f62b3d84dc6536e2ffc /app/views/groups
parentbcdcff749598f4275f7c250c07cbfe632cfe7fdb (diff)
downloadgitlab-ce-cf85de264d049f1f8ff14b23f38f8331ae4c60fa.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/views/groups')
-rw-r--r--app/views/groups/issues.html.haml8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/views/groups/issues.html.haml b/app/views/groups/issues.html.haml
index bf077eb09d2..1cb1cc45bdb 100644
--- a/app/views/groups/issues.html.haml
+++ b/app/views/groups/issues.html.haml
@@ -22,4 +22,10 @@
- if @can_bulk_update
= render_if_exists 'shared/issuable/group_bulk_update_sidebar', group: @group, type: :issues
- = render 'shared/issues'
+ - if Feature.enabled?(:vue_issuables_list, @group)
+ .js-issuables-list{ data: { endpoint: expose_url(api_v4_groups_issues_path(id: @group.id)),
+ 'can-bulk-edit': @can_bulk_update.to_json,
+ 'empty-svg-path': image_path('illustrations/issues.svg'),
+ 'sort-key': @sort } }
+ - else
+ = render 'shared/issues'