/related_tags: fix category dropdown not working.

This commit is contained in:
evazion
2019-10-01 02:15:54 -05:00
parent 978844c548
commit ed7b6c781a

View File

@@ -4,7 +4,7 @@
<%= search_form_for(related_tag_path) do |f| %>
<%= f.input :query, label: "Tag", input_html: { value: params[:search][:query], "data-autocomplete": "tag" } %>
<%= f.input :category, collection: TagCategory.canonical_mapping, include_blank: true, selected: params[:search][:category] %>
<%= f.input :category, collection: TagCategory.categories.map(&:capitalize), include_blank: true, selected: params[:search][:category] %>
<%= f.submit "Show" %>
<% end %>