mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
fix: change the z-index of the datepicker (#2891)
This commit is contained in:
parent
d335436b9a
commit
095933eef8
1 changed files with 3 additions and 1 deletions
|
@ -110,7 +110,9 @@ export const TimeSelector: FC = () => {
|
||||||
open={open}
|
open={open}
|
||||||
anchorEl={anchorEl}
|
anchorEl={anchorEl}
|
||||||
placement="bottom-end"
|
placement="bottom-end"
|
||||||
modifiers={[{name: "offset", options: {offset: [0, 6]}}]}>
|
modifiers={[{name: "offset", options: {offset: [0, 6]}}]}
|
||||||
|
sx={{zIndex: 3, position: "relative"}}
|
||||||
|
>
|
||||||
<ClickAwayListener onClickAway={() => setAnchorEl(null)}>
|
<ClickAwayListener onClickAway={() => setAnchorEl(null)}>
|
||||||
<Paper elevation={3}>
|
<Paper elevation={3}>
|
||||||
<Box sx={classes.container}>
|
<Box sx={classes.container}>
|
||||||
|
|
Loading…
Reference in a new issue