diff options
author | Valery Sizov <vsv2711@gmail.com> | 2015-10-09 19:08:37 +0300 |
---|---|---|
committer | Valery Sizov <vsv2711@gmail.com> | 2015-10-12 12:54:54 +0300 |
commit | d805c5dbb3c2fde0a3b97f86a2dd3abc35e72bd9 (patch) | |
tree | 9a8c93d3336b83f11ea5de27f76c7bc3ce568414 /app/views/admin/users/index.html.haml | |
parent | 882bef79e77e0d0bd899c55349f68c3698ce8088 (diff) | |
download | gitlab-ce-d805c5dbb3c2fde0a3b97f86a2dd3abc35e72bd9.tar.gz |
Add spellcheck=false to certain input fieldsspellcheck_false
Diffstat (limited to 'app/views/admin/users/index.html.haml')
-rw-r--r-- | app/views/admin/users/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/users/index.html.haml b/app/views/admin/users/index.html.haml index e3698ac1c46..71e15d555d3 100644 --- a/app/views/admin/users/index.html.haml +++ b/app/views/admin/users/index.html.haml @@ -32,7 +32,7 @@ %hr = form_tag admin_users_path, method: :get, class: 'form-inline' do .form-group - = search_field_tag :name, params[:name], placeholder: 'Name, email or username', class: 'form-control' + = search_field_tag :name, params[:name], placeholder: 'Name, email or username', class: 'form-control', spellcheck: false = hidden_field_tag "filter", params[:filter] = button_tag class: 'btn btn-primary' do %i.fa.fa-search |