Skip to content

Commit

Permalink
fix(editor): Hide previous execution data for sub-nodes in debug mode…
Browse files Browse the repository at this point in the history
… if it has execution error (#8710)

Signed-off-by: Oleg Ivaniv <[email protected]>
  • Loading branch information
OlegIvaniv authored Feb 26, 2024
1 parent 4b01335 commit a973b9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/editor-ui/src/components/InputPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,8 @@ export default defineComponent({
if (val === 'mapping') {
this.onUnlinkRun();
this.mappedNode = this.rootNodesParents[0];
} else {
this.mappedNode = null;
}
},
immediate: true,
Expand Down
1 change: 1 addition & 0 deletions packages/editor-ui/src/components/RunData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@

<div
v-else-if="
!hasRunError &&
hasNodeRun &&
((dataCount > 0 && maxRunIndex === 0) || search) &&
!isArtificialRecoveredEventItem
Expand Down

0 comments on commit a973b9c

Please sign in to comment.