Skip to content

Commit f08b167

Browse files
committed
Re-order affiliation choice on self-registration form to suggest using an existing affiliation.
1 parent 83b3b7f commit f08b167

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webapp/src/Form/Type/UserRegistrationType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
114114
$builder
115115
->add('affiliation', ChoiceType::class, [
116116
'choices' => [
117-
'No affiliation' => 'none',
118-
'Add new affiliation' => 'new',
119117
'Use existing affiliation' => 'existing',
118+
'Add new affiliation' => 'new',
119+
'No affiliation' => 'none',
120120
],
121121
'expanded' => true,
122122
'mapped' => false,

0 commit comments

Comments
 (0)