diff options
| author | Ashley Dumaine <adumaine@datto.com> | 2018-02-13 03:39:52 +0000 |
|---|---|---|
| committer | adumaine <adumaine@datto.com> | 2018-02-15 08:44:49 -0500 |
| commit | 4f0146bfeb139da3b83dc230c9036a09a1f2a06a (patch) | |
| tree | 1d9a0dc5f5eeaf21f77d0d3569cea8dc69d65d1a /app/views/shared | |
| parent | 201f53e96d26d4babfc6a4492576f873219d4e6f (diff) | |
| download | gitlab-ce-4f0146bfeb139da3b83dc230c9036a09a1f2a06a.tar.gz | |
Change group_children_path to filter_groups_path like for the sort order filter
Signed-off-by: Ashley Dumaine <adumaine@datto.com>
Diffstat (limited to 'app/views/shared')
| -rw-r--r-- | app/views/shared/groups/_dropdown.html.haml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/shared/groups/_dropdown.html.haml b/app/views/shared/groups/_dropdown.html.haml index 1a259b679c7..8607be9cd06 100644 --- a/app/views/shared/groups/_dropdown.html.haml +++ b/app/views/shared/groups/_dropdown.html.haml @@ -23,11 +23,11 @@ - if show_archive_options %li.divider %li.js-filter-archived-projects - = link_to group_children_path(@group, archived: nil), class: ("is-active" unless params[:archived].present?) do + = link_to filter_groups_path(archived: nil), class: ("is-active" unless params[:archived].present?) do Hide archived projects %li.js-filter-archived-projects - = link_to group_children_path(@group, archived: true), class: ("is-active" if Gitlab::Utils.to_boolean(params[:archived])) do + = link_to filter_groups_path(archived: true), class: ("is-active" if Gitlab::Utils.to_boolean(params[:archived])) do Show archived projects %li.js-filter-archived-projects - = link_to group_children_path(@group, archived: 'only'), class: ("is-active" if params[:archived] == 'only') do + = link_to filter_groups_path(archived: 'only'), class: ("is-active" if params[:archived] == 'only') do Show archived projects only |
