Skip to content

Commit

Permalink
Fix iteration in membership invoice form (#1490)
Browse files Browse the repository at this point in the history
  • Loading branch information
codez authored Jan 8, 2025
1 parent 9596c2b commit a7c7c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/people/membership_invoices/new.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
= f.inline_radio_button :new_entry, true, t("global.yes"), true
= f.inline_radio_button :new_entry, false, t("global.no"), true, checked: true

- @invoice_form.zusatzsektionen do |section|
- @invoice_form.zusatzsektionen.each do |section|
%div
= f.inline_radio_button :section_id, section.id, "#{t(".zusatzsektion_eintrittsrechnung")} #{section.name}", false, checked: false

Expand Down

0 comments on commit a7c7c2c

Please sign in to comment.