diff --git a/app/vmui/packages/vmui/src/components/CustomPanel/NestedNav/NestedNav.tsx b/app/vmui/packages/vmui/src/components/CustomPanel/NestedNav/NestedNav.tsx
index 3400c64f68..15d918a2d9 100644
--- a/app/vmui/packages/vmui/src/components/CustomPanel/NestedNav/NestedNav.tsx
+++ b/app/vmui/packages/vmui/src/components/CustomPanel/NestedNav/NestedNav.tsx
@@ -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"} /> :