Change value of "multiplex" mode on Merge-Node

This commit is contained in:
Jan Oberhauser 2020-01-15 07:53:27 -06:00
parent 21de89608e
commit 4bf28a75a6

View file

@ -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);