From 9a0bc6802b1e16425b2badf7e71c51922ffa60ad Mon Sep 17 00:00:00 2001 From: evazion Date: Mon, 24 Apr 2017 22:45:02 -0500 Subject: [PATCH] /post_appeals: add blank option to Resolved dropdown. --- app/views/post_appeals/_search.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/post_appeals/_search.html.erb b/app/views/post_appeals/_search.html.erb index 37dd915b1..e197f1d3b 100644 --- a/app/views/post_appeals/_search.html.erb +++ b/app/views/post_appeals/_search.html.erb @@ -3,6 +3,6 @@ <%= f.input :post_tags_match, label: "Tags", input_html: { value: params[:search][:post_tags_match], data: { autocomplete: "tag-query" } } %> <%= f.input :post_id, label: "Post ID", input_html: { value: params[:search][:post_id] } %> <%= f.input :creator_name, label: "Creator", input_html: { value: params[:search][:creator_name] } %> - <%= f.input :is_resolved, label: "Resolved?", collection: [["Yes", true], ["No", false]], selected: params[:search][:is_resolved] %> + <%= f.input :is_resolved, label: "Resolved?", collection: [["Yes", true], ["No", false]], include_blank: true, selected: params[:search][:is_resolved] %> <%= f.submit "Search" %> <% end %>