mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
🐛 Fix bug that no Fields could be added
This commit is contained in:
parent
ebfdd91b82
commit
8b1e3d7ba9
|
@ -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.',
|
||||
|
|
Loading…
Reference in a new issue