diff --git a/app/assets/javascripts/groups/index.js b/app/assets/javascripts/groups/index.js new file mode 100644 index 00000000000..c0e083ef635 --- /dev/null +++ b/app/assets/javascripts/groups/index.js @@ -0,0 +1,3 @@ +$(() => { + // Groups bundle +}); \ No newline at end of file diff --git a/app/views/dashboard/groups/index.html.haml b/app/views/dashboard/groups/index.html.haml index 0d35d11fb63..bf1013c685b 100644 --- a/app/views/dashboard/groups/index.html.haml +++ b/app/views/dashboard/groups/index.html.haml @@ -2,6 +2,8 @@ - header_title "Groups", dashboard_groups_path = render 'dashboard/groups_head' += page_specific_javascript_bundle_tag('groups') + - if @groups.empty? = render 'empty_state' - else diff --git a/config/webpack.config.js b/config/webpack.config.js index 0ec9e48845e..966b1e2283e 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -32,6 +32,7 @@ var config = { filtered_search: './filtered_search/filtered_search_bundle.js', graphs: './graphs/graphs_bundle.js', group: './group.js', + groups: './groups/index.js', groups_list: './groups_list.js', issuable: './issuable/issuable_bundle.js', issue_show: './issue_show/index.js',