summaryrefslogtreecommitdiff
path: root/app/views/shared/projects
diff options
context:
space:
mode:
authorMark Lapierre <mlapierre@gitlab.com>2019-06-12 12:09:07 +1000
committerMark Lapierre <mlapierre@gitlab.com>2019-06-12 12:09:07 +1000
commit7886f44d632f8004024f869aadd20fcc6f225f54 (patch)
tree7a842f6ad512070133101eff6c4b6612bca6501f /app/views/shared/projects
parent14d19dfab264847477577002940d0c07a96502db (diff)
downloadgitlab-ce-7886f44d632f8004024f869aadd20fcc6f225f54.tar.gz
Allow the Projects Dashboard to be validatedqa-ml-validate-after-visit-in-block
Diffstat (limited to 'app/views/shared/projects')
-rw-r--r--app/views/shared/projects/_search_form.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/projects/_search_form.html.haml b/app/views/shared/projects/_search_form.html.haml
index 7c7c0a363ac..4365e3f6877 100644
--- a/app/views/shared/projects/_search_form.html.haml
+++ b/app/views/shared/projects/_search_form.html.haml
@@ -1,7 +1,7 @@
- form_field_classes = local_assigns[:admin_view] || !Feature.enabled?(:project_list_filter_bar) ? 'input-short js-projects-list-filter' : ''
- placeholder = local_assigns[:search_form_placeholder] ? search_form_placeholder : 'Filter by name...'
-= form_tag filter_projects_path, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|
+= form_tag filter_projects_path, method: :get, class: 'project-filter-form qa-project-filter-form', id: 'project-filter-form' do |f|
= search_field_tag :name, params[:name],
placeholder: placeholder,
class: "project-filter-form-field form-control #{form_field_classes}",