diff options
author | Rémy Coutable <remy@rymai.me> | 2018-10-02 12:51:42 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-10-02 12:51:42 +0000 |
commit | a1caf4d9096f20b2fe3b3591596fbe3664c442ee (patch) | |
tree | 739e6cd9150efa9632d9ee7d2be88ddd665bce4b /app | |
parent | d581b1d9e88028023663a816479a621375784aef (diff) | |
parent | 3317c4ba07b2b2252e75c53152b42a7b3c90b2c6 (diff) | |
download | gitlab-ce-a1caf4d9096f20b2fe3b3591596fbe3664c442ee.tar.gz |
Merge branch 'ml-qa-optimize-group-filter' into 'master'
QA: Optimize groups filter
See merge request gitlab-org/gitlab-ce!21994
Diffstat (limited to 'app')
-rw-r--r-- | app/views/shared/groups/_empty_state.html.haml | 2 | ||||
-rw-r--r-- | app/views/shared/groups/_search_form.html.haml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/shared/groups/_empty_state.html.haml b/app/views/shared/groups/_empty_state.html.haml index c35f6f5a3c1..f6b3a49eacb 100644 --- a/app/views/shared/groups/_empty_state.html.haml +++ b/app/views/shared/groups/_empty_state.html.haml @@ -1,4 +1,4 @@ -.group-empty-state.row.align-items-center.justify-content-center.qa-groups-empty-state +.group-empty-state.row.align-items-center.justify-content-center .icon.text-center.order-md-2 = custom_icon("icon_empty_groups") diff --git a/app/views/shared/groups/_search_form.html.haml b/app/views/shared/groups/_search_form.html.haml index 67e1cd0d67b..49b812baefc 100644 --- a/app/views/shared/groups/_search_form.html.haml +++ b/app/views/shared/groups/_search_form.html.haml @@ -1,2 +1,2 @@ = form_tag request.path, method: :get, class: "group-filter-form js-group-filter-form", id: 'group-filter-form' do |f| - = search_field_tag :filter, params[:filter], placeholder: s_('GroupsTree|Search by name'), class: 'group-filter-form-field form-control js-groups-list-filter', spellcheck: false, id: 'group-filter-form-field', tabindex: "2" + = search_field_tag :filter, params[:filter], placeholder: s_('GroupsTree|Search by name'), class: 'group-filter-form-field form-control js-groups-list-filter qa-groups-filter', spellcheck: false, id: 'group-filter-form-field', tabindex: "2" |