Skip to content

Commit 9c7ee56

Browse files
committed
fix: terminal trace tree view
1 parent 3b9e3c9 commit 9c7ee56

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/uipath/_cli/_dev/_terminal/_components/_details.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,8 @@ def _show_run_details(self, run: ExecutionRun):
292292
def _rebuild_spans_tree(self):
293293
"""Rebuild the spans tree from current run's traces."""
294294
spans_tree = self.query_one("#spans-tree", Tree)
295-
spans_tree.clear()
295+
spans_tree.root.remove_children()
296+
296297
# Only clear the node mapping since we're rebuilding the tree structure
297298
self.span_tree_nodes.clear()
298299

0 commit comments

Comments
 (0)