Skip to content

Commit

Permalink
Fix select content appearing under dialogs (#1777)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-zeglen committed Jan 27, 2022
1 parent 4f6a2d4 commit 8bbd07c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,10 @@ const MultiAutocompleteSelectFieldComponent: React.FC<MultiAutocompleteSelectFie
<Popper
anchorEl={anchor.current}
open={isOpen}
style={{ width: anchor.current.clientWidth, zIndex: 10 }}
style={{
width: anchor.current.clientWidth,
zIndex: 1301
}}
placement="bottom-end"
>
<MultiAutocompleteSelectFieldContent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ const SingleAutocompleteSelectFieldComponent: React.FC<SingleAutocompleteSelectF
<Popper
anchorEl={anchor.current}
open={isOpen}
style={{ width: anchor.current.clientWidth, zIndex: 10 }}
style={{ width: anchor.current.clientWidth, zIndex: 1301 }}
placement="bottom-end"
>
<SingleAutocompleteSelectFieldContent
Expand Down

0 comments on commit 8bbd07c

Please sign in to comment.