fix: Fix resolving of expressions of deeply nested sub-nodes (#8612)

This commit is contained in:
oleg
2024-02-14 10:42:55 +01:00
committed by GitHub
parent d18cba37a4
commit f5274302f8
4 changed files with 52 additions and 43 deletions

View File

@@ -81,10 +81,7 @@ export default defineComponent({
if (!activeNode) {
return null;
}
return this.workflowHelpers.getParentMainInputNode(
this.workflowHelpers.getCurrentWorkflow(),
activeNode,
);
return this.workflow.getParentMainInputNode(activeNode);
},
extendAll(): boolean {
if (this.variableFilter) {