mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
⚡ Change value of "multiplex" mode on Merge-Node
This commit is contained in:
@@ -53,7 +53,7 @@ export class Merge implements INodeType {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Multiplex',
|
name: 'Multiplex',
|
||||||
value: 'mux',
|
value: 'multiplex',
|
||||||
description: 'Merges each value of one input with each value of the other input. The output will contain (m * n) items where (m) and (n) are lengths of the inputs.'
|
description: 'Merges each value of one input with each value of the other input. The output will contain (m * n) items where (m) and (n) are lengths of the inputs.'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -259,7 +259,7 @@ export class Merge implements INodeType {
|
|||||||
|
|
||||||
returnData.push(newItem);
|
returnData.push(newItem);
|
||||||
}
|
}
|
||||||
} else if (mode === 'mux') {
|
} else if (mode === 'multiplex') {
|
||||||
const dataInput1 = this.getInputData(0);
|
const dataInput1 = this.getInputData(0);
|
||||||
const dataInput2 = this.getInputData(1);
|
const dataInput2 = this.getInputData(1);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user