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

@@ -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) %>