diff --git a/understand-anything-plugin/packages/dashboard/src/components/CustomNode.tsx b/understand-anything-plugin/packages/dashboard/src/components/CustomNode.tsx index 01c912f..39fe319 100644 --- a/understand-anything-plugin/packages/dashboard/src/components/CustomNode.tsx +++ b/understand-anything-plugin/packages/dashboard/src/components/CustomNode.tsx @@ -151,9 +151,19 @@ function CustomNodeComponent({ {data.nodeType} - - {data.complexity} - +
+ + {data.complexity} + + {data.tags?.includes("tested") && ( + + )} +
diff --git a/understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx b/understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx index 891d997..4ba8d1b 100644 --- a/understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx +++ b/understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx @@ -533,6 +533,7 @@ function useLayerDetailTopology(): LayerDetailTopology & { nodeType: node.type, summary: node.summary, complexity: node.complexity, + tags: node.tags, isHighlighted: false, searchScore: undefined, isSelected: false, @@ -908,6 +909,7 @@ function buildCustomFlowNode( nodeType: node.type, summary: node.summary, complexity: node.complexity, + tags: node.tags, isHighlighted: false, searchScore: undefined, isSelected: false,