forms: remove "Use * for wildcard" hints.
This commit is contained in:
@@ -12,8 +12,8 @@
|
||||
<%= f.input :post_id, input_html: { value: params.dig(:search, :post_id) } %>
|
||||
<%= f.input :parent_id, input_html: { value: params.dig(:search, :parent_id) } %>
|
||||
<%= f.input :rating, input_html: { value: params.dig(:search, :rating) } %>
|
||||
<%= f.input :source_ilike, label: "Source", input_html: { value: params.dig(:search, :source_ilike) }, hint: "Use * for wildcard" %>
|
||||
<%= f.input :tag_matches, input_html: { value: params.dig(:search, :tag_matches) }, hint: "Single tag, use * for wildcard" %>
|
||||
<%= f.input :source_ilike, label: "Source", input_html: { value: params.dig(:search, :source_ilike) } %>
|
||||
<%= f.input :tag_matches, input_html: { value: params.dig(:search, :tag_matches) }, hint: "Single tag only" %>
|
||||
<%= f.input :version, input_html: { value: params.dig(:search, :version) } %>
|
||||
<%= f.input :is_new, label: "Include uploads?", collection: [["Yes", nil], ["No", false], ["Only", true]], include_blank: false, selected: params.dig(:search, :is_new), hint: "I.e. the 1st version of a post" %>
|
||||
<%= f.input :rating_changed, as: :select, include_blank: true, selected: params.dig(:search, :rating_changed) %>
|
||||
|
||||
Reference in New Issue
Block a user