diff --git a/app/src/components/Tree/TreeNodeTitle.tsx b/app/src/components/Tree/TreeNodeTitle.tsx index 0ca6e9b..16a38fd 100644 --- a/app/src/components/Tree/TreeNodeTitle.tsx +++ b/app/src/components/Tree/TreeNodeTitle.tsx @@ -69,9 +69,11 @@ const styles = (theme: Theme) => ({ color: theme.palette.type === 'light' ? '#222' : '#eee', cursor: 'pointer' as 'pointer', paddingRight: theme.spacing(0.25), + userSelect: 'none' as 'none', }, collapsedSubnodes: { color: theme.palette.text.secondary, + userSelect: 'none' as 'none', }, })