forms: remove "Use * for wildcard" hints.

This commit is contained in:
evazion
2022-03-19 21:14:17 -05:00
parent 7dd6cf56ce
commit 0ddc09f011
14 changed files with 19 additions and 19 deletions

View File

@@ -8,7 +8,7 @@
</h1>
<%= search_form_for(saved_searches_path) do |f| %>
<%= f.input :query_ilike, label: "Query", hint: "Use * for wildcard", input_html: { value: params[:search][:query_ilike] } %>
<%= f.input :query_ilike, label: "Query", input_html: { value: params[:search][:query_ilike] } %>
<%= f.input :label, label: "Label", input_html: { value: params[:search][:label], "data-autocomplete": "saved-search-label" } %>
<%= f.input :order, collection: [%w[Newest id], %w[Query query], %w[Label label]], include_blank: false, selected: params[:search][:order] %>
<%= f.submit "Search" %>