Skip to content

Commit ea544f1

Browse files
committed
fix(dashboard): continuously apply log filter during live run
1 parent 1a7ee24 commit ea544f1

File tree

1 file changed

+3
-3
lines changed
  • apps/webapp/app/components/primitives/TreeView

1 file changed

+3
-3
lines changed

apps/webapp/app/components/primitives/TreeView/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ export function concreteStateFromInput({
3939
}
4040
const nodes = concreteStateFromPartialState(tree, state);
4141

42-
return {
42+
return applyFilterToState({
4343
tree,
4444
nodes,
4545
changes: { selectedId },
4646
filter,
4747
filteredNodes: nodes,
48-
visibleNodeIds: visibleNodes(tree, nodes).map((node) => node.id),
49-
};
48+
visibleNodeIds: [],
49+
});
5050
}
5151

5252
export function concreteStateFromPartialState<TData>(

0 commit comments

Comments
 (0)