Merge pull request #480 from bitWolfy/fix-borderline-relevancy

[Posts] Fix the "Borderline Relevancy" detailed disapproval option
This commit is contained in:
Earlopain 2023-03-06 08:44:10 +01:00 committed by GitHub
commit 84de15b27d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>