fix(core): Optimize connection type lookups (#17585)

This commit is contained in:
Csaba Tuncsik
2025-07-25 16:12:21 +02:00
committed by GitHub
parent 69beafbf71
commit 70eab1b2a0
4 changed files with 508 additions and 46 deletions

View File

@@ -169,7 +169,7 @@ function resolveParameterImpl<T = IDataObject>(
let contextNode = activeNode;
if (activeNode) {
contextNode = workflow.getParentMainInputNode(activeNode);
contextNode = workflow.getParentMainInputNode(activeNode) ?? null;
}
const workflowRunData = executionData?.data?.resultData.runData ?? null;