mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
[MM-51076] Fix dropdown in modal for adding users in a group (#22642)
Co-authored-by: Mattermost Build <build@mattermost.com>
This commit is contained in:
parent
09ac549d0b
commit
dd2b1db420
@ -65,7 +65,6 @@ exports[`component/create_user_groups_modal should match snapshot with back butt
|
||||
</ModalHeader>
|
||||
<ModalBody
|
||||
bsClass="modal-body"
|
||||
className="overflow--visible"
|
||||
componentClass="div"
|
||||
>
|
||||
<div
|
||||
@ -184,7 +183,6 @@ exports[`component/create_user_groups_modal should match snapshot without back b
|
||||
</ModalHeader>
|
||||
<ModalBody
|
||||
bsClass="modal-body"
|
||||
className="overflow--visible"
|
||||
componentClass="div"
|
||||
>
|
||||
<div
|
||||
|
@ -3,6 +3,10 @@
|
||||
margin-top: calc(50vh - 240px);
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.Input___error {
|
||||
&.group-error {
|
||||
position: absolute;
|
||||
|
@ -213,9 +213,7 @@ export default class CreateUserGroupsModal extends React.PureComponent<Props, St
|
||||
}
|
||||
|
||||
</Modal.Header>
|
||||
<Modal.Body
|
||||
className='overflow--visible'
|
||||
>
|
||||
<Modal.Body>
|
||||
<div className='user-groups-modal__content'>
|
||||
<div className='group-name-input-wrapper'>
|
||||
<Input
|
||||
|
Loading…
Reference in New Issue
Block a user