mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Display correct expression result for not first output data
This commit is contained in:
@@ -389,7 +389,6 @@ export const workflowHelpers = mixins(
|
|||||||
|
|
||||||
|
|
||||||
resolveParameter(parameter: NodeParameterValue | INodeParameters | NodeParameterValue[] | INodeParameters[]) {
|
resolveParameter(parameter: NodeParameterValue | INodeParameters | NodeParameterValue[] | INodeParameters[]) {
|
||||||
const inputIndex = 0;
|
|
||||||
const itemIndex = 0;
|
const itemIndex = 0;
|
||||||
const runIndex = 0;
|
const runIndex = 0;
|
||||||
const inputName = 'main';
|
const inputName = 'main';
|
||||||
@@ -397,6 +396,7 @@ export const workflowHelpers = mixins(
|
|||||||
const workflow = this.getWorkflow();
|
const workflow = this.getWorkflow();
|
||||||
const parentNode = workflow.getParentNodes(activeNode.name, inputName, 1);
|
const parentNode = workflow.getParentNodes(activeNode.name, inputName, 1);
|
||||||
const executionData = this.$store.getters.getWorkflowExecution as IExecutionResponse | null;
|
const executionData = this.$store.getters.getWorkflowExecution as IExecutionResponse | null;
|
||||||
|
const inputIndex = workflow.getNodeConnectionOutputIndex(activeNode!.name, parentNode[0]) || 0;
|
||||||
let connectionInputData = this.connectionInputData(parentNode, inputName, runIndex, inputIndex);
|
let connectionInputData = this.connectionInputData(parentNode, inputName, runIndex, inputIndex);
|
||||||
|
|
||||||
let runExecutionData: IRunExecutionData;
|
let runExecutionData: IRunExecutionData;
|
||||||
|
|||||||
Reference in New Issue
Block a user