diff --git a/desktop/plugins/public/ui-debugger/components/Tree.tsx b/desktop/plugins/public/ui-debugger/components/Tree.tsx index dcb653f1b..caa0d54cb 100644 --- a/desktop/plugins/public/ui-debugger/components/Tree.tsx +++ b/desktop/plugins/public/ui-debugger/components/Tree.tsx @@ -70,7 +70,6 @@ export type TreeNode = UINode & { isExpanded: boolean; indentGuide: NodeIndentGuide | null; }; - export function Tree2({nodes, rootId}: {nodes: Map; rootId: Id}) { const instance = usePlugin(plugin); const focusedNode = useValue(instance.uiState.focusedNode); @@ -364,17 +363,16 @@ function TreeItemContainer({ }} /> {nodeIcon(treeNode)} - {events ? ( + + + {events && ( - - - ) : ( - + style={{ + backgroundColor: theme.primaryColor, + marginLeft: theme.space.small, + }} + /> )}