mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
⚡ Change value of "multiplex" mode on Merge-Node
This commit is contained in:
parent
21de89608e
commit
4bf28a75a6
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue