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

@@ -1,7 +1,7 @@
<%= search_form_for(bans_path) do |f| %>
<%= f.input :user_name, label: "User", input_html: { value: params[:search][:user_name], data: { autocomplete: "user" } } %>
<%= f.input :banner_name, label: "Banner", input_html: { value: params[:search][:banner_name], data: { autocomplete: "user" } } %>
<%= f.input :reason_matches, label: "Reason", hint: "Use * for wildcard", input_html: { value: params[:search][:reason_matches] } %>
<%= f.input :reason_matches, label: "Reason", input_html: { value: params[:search][:reason_matches] } %>
<%= f.input :expired, label: "Expired?", collection: [["Yes", true], ["No", false]], include_blank: true, selected: params[:search][:expired] %>
<%= f.input :order, include_blank: false, collection: [%w[Created id_desc], %w[Expiration expires_at_desc]], selected: params[:search][:order] %>
<%= f.submit "Search" %>