diff --git a/desktop/plugins/public/ui-debugger/components/tree/Tree.tsx b/desktop/plugins/public/ui-debugger/components/tree/Tree.tsx index 4be0eddd8..f0831e07b 100644 --- a/desktop/plugins/public/ui-debugger/components/tree/Tree.tsx +++ b/desktop/plugins/public/ui-debugger/components/tree/Tree.tsx @@ -446,9 +446,12 @@ function TreeNodeRow({ } function TreeNodeTextContent({treeNode}: {treeNode: TreeNode}) { + const isZero = treeNode.bounds.width === 0 && treeNode.bounds.height === 0; + const invisible = treeNode.hiddenAttributes?.['invisible'] === true; return (