Skip to content

Commit

Permalink
[Member] CAES-1503: Fixed team role for admin. (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
aburov-dev authored Nov 17, 2020
1 parent 3c11a4a commit 40e4f3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Form/Type/Admin/UserTeamType.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public function buildForm(FormBuilderInterface $builder, array $options)
])
->add('userRole', ChoiceType::class, [
'choices' => [
UserTeam::USER_ROLE_MEMBER => 'member',
UserTeam::USER_ROLE_ADMIN => 'admin',
'member' => UserTeam::USER_ROLE_MEMBER,
'admin' => UserTeam::USER_ROLE_ADMIN,
],
])
;
Expand Down

0 comments on commit 40e4f3c

Please sign in to comment.