Skip to content

Commit

Permalink
Fix validation issue in the flag modal
Browse files Browse the repository at this point in the history
  • Loading branch information
ahukkanen committed Apr 23, 2024
1 parent d40d600 commit da118a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/cells/decidim/plans/flag_modal/show.erb
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
[:offensive, t("decidim.shared.flag_modal.offensive")],
[:does_not_belong, t("decidim.shared.flag_modal.does_not_belong", organization_name: current_organization.name)]
], :first, :last do |builder| %>
<%= builder.label { builder.radio_button(id: nil) + builder.text } %>
<%= builder.label { builder.radio_button + builder.text } %>
<% end %>
<%= f.text_area :details, rows: 4, id: nil %>
<%= f.text_area :details, rows: 4 %>
<%= f.submit t("decidim.shared.flag_modal.report") %>
<% end %>
<% end %>
Expand Down

0 comments on commit da118a7

Please sign in to comment.