mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
vmui: disable ripple on nested component, enable copy text on button (#2808)
This commit is contained in:
parent
f3b905dde1
commit
7389fc9adf
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ const NestedNav: FC<RecursiveProps> = ({ trace, totalMsec}) => {
|
|||
return (
|
||||
<Box sx={{ bgcolor: "rgba(201, 227, 246, 0.4)" }}>
|
||||
<ListItem onClick={handleListClick(trace.idValue)} sx={!hasChildren ? {p:0, pl: 7} : {p:0}}>
|
||||
<ListItemButton alignItems={"flex-start"} sx={{ pt: 0, pb: 0}}>
|
||||
<ListItemButton alignItems={"flex-start"} sx={{ pt: 0, pb: 0}} style={{ userSelect: "text" }} disableRipple>
|
||||
{hasChildren ? <ListItemIcon>
|
||||
{openLevels[trace.idValue] ?
|
||||
<ExpandLess fontSize={"large"} color={"info"} /> :
|
||||
|
|
Loading…
Reference in a new issue