From 19d9e71cb90d7085256496df8325564c13db3af4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Tue, 26 Mar 2024 18:17:00 +0100 Subject: [PATCH] fix(core): Add missing `nodeCause` to paired item error (#8976) --- packages/workflow/src/WorkflowDataProxy.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/workflow/src/WorkflowDataProxy.ts b/packages/workflow/src/WorkflowDataProxy.ts index c4b043b67fdc3..f2942bea01a20 100644 --- a/packages/workflow/src/WorkflowDataProxy.ts +++ b/packages/workflow/src/WorkflowDataProxy.ts @@ -915,6 +915,7 @@ export class WorkflowDataProxy { functionOverrides: { message: 'Can’t get data', }, + nodeCause: sourceData.previousNode, description: 'Item points to a node output which does not exist', causeDetailed: `The sourceData points to a node output ‘${previousNodeOutput}‘ which does not exist on node ‘${sourceData.previousNode}‘ (output node did probably supply a wrong one)`, type: 'paired_item_invalid_info',