mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix(CompareDatasets Node): removed quotes from branch names
This commit is contained in:
parent
6a1838d8c1
commit
263794ce40
|
@ -16,7 +16,7 @@ export class CompareDatasets implements INodeType {
|
|||
inputNames: ['Input 1', 'Input 2'],
|
||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-outputs-wrong
|
||||
outputs: ['main', 'main', 'main', 'main'],
|
||||
outputNames: ["'In 1 only'", "'Same'", "'Different'", "'In 2 only'"],
|
||||
outputNames: ['In 1 only', 'Same', 'Different', 'In 2 only'],
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Fields to Match',
|
||||
|
|
Loading…
Reference in a new issue