identite: mark the radio buttons as actually required
This commit is contained in:
parent
da938d0571
commit
7f629ffca1
1 changed files with 2 additions and 2 deletions
|
@ -17,10 +17,10 @@
|
|||
= f.label :gender, class: "required"
|
||||
.radios
|
||||
%label
|
||||
= f.radio_button :gender, Individual::GENDER_MALE
|
||||
= f.radio_button :gender, Individual::GENDER_MALE, required: true
|
||||
= Individual::GENDER_MALE
|
||||
%label
|
||||
= f.radio_button :gender, Individual::GENDER_FEMALE
|
||||
= f.radio_button :gender, Individual::GENDER_FEMALE, required: true
|
||||
= Individual::GENDER_FEMALE
|
||||
|
||||
.flex
|
||||
|
|
Loading…
Reference in a new issue