From b30b36b936376acb3635e9ed19828838cef34a82 Mon Sep 17 00:00:00 2001 From: bitWolfy Date: Sun, 5 Mar 2023 15:05:03 -0800 Subject: [PATCH] [Posts] Fix the "Borderline Relevancy" detailed disapproval option --- app/views/post_disapprovals/_detailed_rejection_dialog.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/post_disapprovals/_detailed_rejection_dialog.html.erb b/app/views/post_disapprovals/_detailed_rejection_dialog.html.erb index 9a07438e8..3d5e8a06b 100644 --- a/app/views/post_disapprovals/_detailed_rejection_dialog.html.erb +++ b/app/views/post_disapprovals/_detailed_rejection_dialog.html.erb @@ -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 %>