Skip to content

Commit

Permalink
fix(ui): improve debug outputs expression on initial load (#6094)
Browse files Browse the repository at this point in the history
Co-authored-by: manu2931 <[email protected]>
Co-authored-by: Miloš Paunović <[email protected]>
  • Loading branch information
3 people committed Dec 4, 2024
1 parent e45bbdb commit b72fb29
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ui/src/components/executions/outputs/Wrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,18 @@
if (!task) return;
selected.value = [task.value];
expandedValue.value = task.value;
const child = task.children?.[1];
if (child) {
selected.value.push(child.value);
expandedValue.value = child.path
expandedValue.value = child.path;
const grandChild = child.children?.[1];
if (grandChild) {
selected.value.push(grandChild.value);
expandedValue.value = grandChild.path;
}
}
debugCollapse.value = "debug";
Expand Down

0 comments on commit b72fb29

Please sign in to comment.