diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2018-07-20 19:05:36 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2018-07-31 12:46:36 +0300 |
commit | 85a8c7efb0666deb31255122933f958b5a81f6b5 (patch) | |
tree | 3e8d5681f301c688c98c3abd2f56d22ca030da8a /app/views/projects/labels | |
parent | 692d4795d173319a18184e80113256696ad3d6f8 (diff) | |
download | gitlab-ce-85a8c7efb0666deb31255122933f958b5a81f6b5.tar.gz |
Add feature specs for project labels search
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/projects/labels')
-rw-r--r-- | app/views/projects/labels/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/labels/index.html.haml b/app/views/projects/labels/index.html.haml index 6dca035ca28..95aa35bd70b 100644 --- a/app/views/projects/labels/index.html.haml +++ b/app/views/projects/labels/index.html.haml @@ -18,7 +18,7 @@ = _('Star a label to make it a priority label. Order the prioritized labels to change their relative priority, by dragging.') = form_tag project_labels_path(@project), method: :get do - = search_field_tag :search, params[:search], { placeholder: _('Filter labels by name or description'), class: 'form-control', spellcheck: false } + = search_field_tag :search, params[:search], { placeholder: _('Filter labels by name or description'), id: 'label-search', class: 'form-control', spellcheck: false } .labels-container.prepend-top-10 - if can_admin_label |