From 6bc16e72323ca548fa5b97ae9c81220ae148d7af Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 29 Mar 2026 15:05:34 +0000 Subject: [PATCH 1/2] Initial plan From 43ab4fb893b35a8105fdd6bd78b2ba4a41317d96 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 29 Mar 2026 15:09:15 +0000 Subject: [PATCH 2/2] fix: hide redundant bottom bar (CodeViewer) on node click, closes #55 Agent-Logs-Url: https://github.com/Lum1104/Understand-Anything/sessions/f2065131-263d-42f8-957c-4006b0954284 Co-authored-by: fishinakleinbottle <11816323+fishinakleinbottle@users.noreply.github.com> --- .../packages/dashboard/src/components/GraphView.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx b/understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx index 7e61e51..c49f1ff 100644 --- a/understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx +++ b/understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx @@ -480,7 +480,6 @@ function GraphViewInner() { const navigationLevel = useDashboardStore((s) => s.navigationLevel); const activeLayerId = useDashboardStore((s) => s.activeLayerId); const selectNode = useDashboardStore((s) => s.selectNode); - const openCodeViewer = useDashboardStore((s) => s.openCodeViewer); const drillIntoLayer = useDashboardStore((s) => s.drillIntoLayer); const focusNodeId = useDashboardStore((s) => s.focusNodeId); const setFocusNode = useDashboardStore((s) => s.setFocusNode); @@ -523,10 +522,9 @@ function GraphViewInner() { drillIntoLayer(targetLayerId); } else { selectNode(node.id); - openCodeViewer(node.id); } }, - [navigationLevel, drillIntoLayer, selectNode, openCodeViewer], + [navigationLevel, drillIntoLayer, selectNode], ); const onPaneClick = useCallback(() => {