diff --git a/packages/web/src/components/treeView.tsx b/packages/web/src/components/treeView.tsx index b57a56404a..06cffbb3f3 100644 --- a/packages/web/src/components/treeView.tsx +++ b/packages/web/src/components/treeView.tsx @@ -328,8 +328,6 @@ function indexTree( let lastItem: T | null = null; const appendChildren = (parent: T, depth: number) => { - if (isVisible && !isVisible(parent)) - return; for (const item of parent.children as T[]) { if (isVisible && !isVisible(item)) continue;