From 699b89e916b21c7a77390b5e2301b1d64a4585f8 Mon Sep 17 00:00:00 2001 From: hypercross Date: Fri, 14 Aug 2026 12:05:46 +0800 Subject: [PATCH] feat(web): show child count in object tree nodes --- apps/web/src/components/ObjectTree.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apps/web/src/components/ObjectTree.tsx b/apps/web/src/components/ObjectTree.tsx index 10d009e..164f2fc 100644 --- a/apps/web/src/components/ObjectTree.tsx +++ b/apps/web/src/components/ObjectTree.tsx @@ -150,6 +150,16 @@ function TreeNode({ ))} {node.label} + {hasChildren && ( + + {node.children.length} + + )} {hasChildren && expanded && (