RBAC: Prevent role picker from disappearing when many roles are selected (#91065)

make the container of selected roles scrollable
This commit is contained in:
Ieva 2024-07-29 11:17:55 +01:00 committed by GitHub
parent 746e2eeee6
commit e2ee7f06eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -153,6 +153,10 @@ const getRolePickerInputStyles = (
minWidth: width || ROLE_PICKER_WIDTH + 'px',
width: width,
minHeight: '32px',
maxHeight: '200px',
overflow: 'scroll',
overflowX: 'hidden',
overflowY: 'auto',
height: 'auto',
flexDirection: 'row',
paddingRight: theme.spacing(1),