From a973b9c077d28faa45b527cf6e0f0e6644cf354a Mon Sep 17 00:00:00 2001 From: oleg Date: Mon, 26 Feb 2024 10:22:42 +0100 Subject: [PATCH] fix(editor): Hide previous execution data for sub-nodes in debug mode if it has execution error (#8710) Signed-off-by: Oleg Ivaniv --- packages/editor-ui/src/components/InputPanel.vue | 2 ++ packages/editor-ui/src/components/RunData.vue | 1 + 2 files changed, 3 insertions(+) diff --git a/packages/editor-ui/src/components/InputPanel.vue b/packages/editor-ui/src/components/InputPanel.vue index c3160143b..7c193504c 100644 --- a/packages/editor-ui/src/components/InputPanel.vue +++ b/packages/editor-ui/src/components/InputPanel.vue @@ -395,6 +395,8 @@ export default defineComponent({ if (val === 'mapping') { this.onUnlinkRun(); this.mappedNode = this.rootNodesParents[0]; + } else { + this.mappedNode = null; } }, immediate: true, diff --git a/packages/editor-ui/src/components/RunData.vue b/packages/editor-ui/src/components/RunData.vue index 1cd3dec8d..ab34c6144 100644 --- a/packages/editor-ui/src/components/RunData.vue +++ b/packages/editor-ui/src/components/RunData.vue @@ -173,6 +173,7 @@