Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDan Davison <ddavison@gitlab.com>2019-06-18 01:45:38 +0300
committerDan Davison <ddavison@gitlab.com>2019-06-18 01:45:38 +0300
commit8a153abd2dba2f91908e9805a74cd3e276f28e08 (patch)
tree360bb828f560ddb467e2b41f589d0f3c307d549b /app
parent7c27155c453f4cc4382424bbd1d84813a2c86b10 (diff)
parent7886f44d632f8004024f869aadd20fcc6f225f54 (diff)
Merge branch 'qa-ml-validate-after-visit-in-block' into 'master'
[CE] Validate page after visit in block See merge request gitlab-org/gitlab-ce!29524
Diffstat (limited to 'app')
-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}",