[Posts] Fix the "Borderline Relevancy" detailed disapproval option

This commit is contained in:
bitWolfy 2023-03-05 15:05:03 -08:00
parent 6776704560
commit b30b36b936

View File

@ -3,7 +3,7 @@
<%= custom_form_for(PostDisapproval.new, url: moderator_post_disapprovals_path, id: "detailed-rejection-form") do |f| %>
<%= f.hidden_field :post_id, value: "x" %>
<%= f.input :reason, collection: [["Borderline Relevant", "borderline_relevant"], ["Borderline Quality", "borderline_quality"], ["Other", "other"]] %>
<%= f.input :reason, collection: [["Borderline Relevancy", "borderline_relevancy"], ["Borderline Quality", "borderline_quality"], ["Other", "other"]] %>
<%= f.input :message, as: :string %>
<% end %>
</div>