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(dmails_path) do |f| %>
<%= f.input :folder, as: :hidden, input_html: { value: params[:search][:folder] } %>
<%= f.input :title_matches, label: "Title", hint: "Use * for wildcard", input_html: { value: params[:search][:title_matches] } %>
<%= f.input :message_matches, label: "Message", hint: "Use * for wildcard", input_html: { value: params[:search][:messages_matches] } %>
<%= f.input :title_matches, label: "Title", input_html: { value: params[:search][:title_matches] } %>
<%= f.input :message_matches, label: "Message", input_html: { value: params[:search][:messages_matches] } %>
<%= f.input :to_name, label: "To", input_html: { value: params[:search][:to_name], data: { autocomplete: "user" } } %>
<%= f.input :from_name, label: "From", input_html: { value: params[:search][:from_name], data: { autocomplete: "user" } } %>
<%= f.submit "Search" %>