Skip to content

Commit

Permalink
BED-5060: fix ui (#1069)
Browse files Browse the repository at this point in the history
  • Loading branch information
wes-mil authored Jan 10, 2025
1 parent 05cfad3 commit 607be43
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ const UpdateUserFormInner: React.FC<{
value={isNaN(field.value) ? '' : field.value.toString()}
variant='standard'
fullWidth
data-testid='update-user-dialog_select-role'>
hidden={hasSelectedSelf}
data-testid='update-user-dialog_select-role'
hidden={hasSelectedSelf}>
{roles?.map((role: Role) => (
<MenuItem key={role.id} value={role.id.toString()}>
{role.name}
Expand Down

0 comments on commit 607be43

Please sign in to comment.