fix ids in quick searches again
This commit is contained in:
@@ -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 %>
|
||||
|
||||
@@ -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 %>
|
||||
|
||||
@@ -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 %>
|
||||
|
||||
@@ -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 %>
|
||||
|
||||
Reference in New Issue
Block a user