mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(editor): Open failed node in failed execution from sub-workflow node (#17076)
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
This commit is contained in:
@@ -311,9 +311,7 @@ const subworkflowExecutionError = computed(() => {
|
||||
} as NodeError;
|
||||
});
|
||||
|
||||
const hasSubworkflowExecutionError = computed(() =>
|
||||
Boolean(workflowsStore.subWorkflowExecutionError),
|
||||
);
|
||||
const hasSubworkflowExecutionError = computed(() => !!workflowsStore.subWorkflowExecutionError);
|
||||
|
||||
// Sub-nodes may wish to display the parent node error as it can contain additional metadata
|
||||
const parentNodeError = computed(() => {
|
||||
@@ -1775,7 +1773,7 @@ defineExpose({ enterEditMode });
|
||||
v-else-if="hasNodeRun && !inputData.length && !displaysMultipleNodes && !search"
|
||||
:class="$style.center"
|
||||
>
|
||||
<slot name="no-output-data">xxx</slot>
|
||||
<slot name="no-output-data"></slot>
|
||||
</div>
|
||||
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user