diff --git a/app/views/artists/_quick_search.html.erb b/app/views/artists/_quick_search.html.erb index 21b01101d..a84724e61 100644 --- a/app/views/artists/_quick_search.html.erb +++ b/app/views/artists/_quick_search.html.erb @@ -1,3 +1,3 @@ <%= form_tag(artists_path, :method => :get) do %> - <%= text_field "search", "name", :id => "quicksearch_name", :placeholder => "Search artists" %> + <%= text_field "search", "name", :id => "quick_search_name", :placeholder => "Search artists" %> <% end %> diff --git a/app/views/comments/_quick_search.html.erb b/app/views/comments/_quick_search.html.erb index 07dbb3233..eb41c59e8 100644 --- a/app/views/comments/_quick_search.html.erb +++ b/app/views/comments/_quick_search.html.erb @@ -1,4 +1,4 @@ <%= form_tag(comments_path, :method => :get) do %> <%= hidden_field_tag "group_by", "comment" %> - <%= text_field "search", "body_matches", :placeholder => "Search comments" %> + <%= text_field "search", "body_matches", :id => "quick_search_body_matches", :placeholder => "Search comments" %> <% end %> diff --git a/app/views/notes/_quick_search.html.erb b/app/views/notes/_quick_search.html.erb index 7fee86be0..66f1130a2 100644 --- a/app/views/notes/_quick_search.html.erb +++ b/app/views/notes/_quick_search.html.erb @@ -1,4 +1,4 @@ <%= form_tag(notes_path, :method => :get) do %> <%= hidden_field_tag "group_by", "note" %> - <%= text_field "search", "body_matches", :placeholder => "Search notes" %> + <%= text_field "search", "body_matches", :id => "quick_search_body_matches", :placeholder => "Search notes" %> <% end %> diff --git a/app/views/users/_quick_search.html.erb b/app/views/users/_quick_search.html.erb index 5800c37b4..917825ae6 100644 --- a/app/views/users/_quick_search.html.erb +++ b/app/views/users/_quick_search.html.erb @@ -1,3 +1,3 @@ <%= form_tag(users_path, :method => :get) do %> - <%= text_field "search", "name_matches", :placeholder => "Search users" %> + <%= text_field "search", "name_matches", :id => "quick_search_name_matches", :placeholder => "Search users" %> <% end %>