🐛 Fix bug that no Fields could be added

This commit is contained in:
Jan Oberhauser 2019-10-20 17:38:11 +02:00
parent ebfdd91b82
commit 8b1e3d7ba9

View file

@ -131,7 +131,7 @@ export class Airtable implements INodeType {
],
},
},
default: '',
default: [],
placeholder: 'Name',
required: true,
description: 'The name of fields of which the data should be send to Airtable.',
@ -218,7 +218,7 @@ export class Airtable implements INodeType {
multipleValues: true,
multipleValueButtonText: 'Add Field',
},
default: '',
default: [],
placeholder: 'Name',
description: 'Only data for fields whose names are in this list will be included in the records.',
},
@ -355,7 +355,7 @@ export class Airtable implements INodeType {
],
},
},
default: '',
default: [],
placeholder: 'Name',
required: true,
description: 'The name of fields of which the data should be send to Airtable.',