mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-24 02:52:24 -08:00
⚡ Change "name" to "id" in label and description of Airtable nodes (#2719)
* Changing "name of table" to "id of table" * Change "name of table" to "id of table" in trigger node * Change displayName from Table to Table ID
This commit is contained in:
parent
7609cd32e4
commit
daf91a1228
|
@ -83,13 +83,13 @@ export class Airtable implements INodeType {
|
|||
description: 'The ID of the base to access.',
|
||||
},
|
||||
{
|
||||
displayName: 'Table',
|
||||
displayName: 'Table ID',
|
||||
name: 'table',
|
||||
type: 'string',
|
||||
default: '',
|
||||
placeholder: 'Stories',
|
||||
required: true,
|
||||
description: 'The name of table to access.',
|
||||
description: 'The ID of the table to access.',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
|
|
|
@ -48,11 +48,11 @@ export class AirtableTrigger implements INodeType {
|
|||
description: 'The ID of this base.',
|
||||
},
|
||||
{
|
||||
displayName: 'Table',
|
||||
displayName: 'Table ID',
|
||||
name: 'tableId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The name of table to access.',
|
||||
description: 'The ID of the table to access.',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue