mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix(editor): Hide previous execution data for sub-nodes in debug mode if it has execution error (#8710)
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
This commit is contained in:
parent
4b01335aa4
commit
a973b9c077
|
@ -395,6 +395,8 @@ export default defineComponent({
|
|||
if (val === 'mapping') {
|
||||
this.onUnlinkRun();
|
||||
this.mappedNode = this.rootNodesParents[0];
|
||||
} else {
|
||||
this.mappedNode = null;
|
||||
}
|
||||
},
|
||||
immediate: true,
|
||||
|
|
|
@ -173,6 +173,7 @@
|
|||
|
||||
<div
|
||||
v-else-if="
|
||||
!hasRunError &&
|
||||
hasNodeRun &&
|
||||
((dataCount > 0 && maxRunIndex === 0) || search) &&
|
||||
!isArtificialRecoveredEventItem
|
||||
|
|
Loading…
Reference in a new issue