mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -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.',
|
description: 'The ID of the base to access.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table',
|
displayName: 'Table ID',
|
||||||
name: 'table',
|
name: 'table',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: 'Stories',
|
placeholder: 'Stories',
|
||||||
required: true,
|
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.',
|
description: 'The ID of this base.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table',
|
displayName: 'Table ID',
|
||||||
name: 'tableId',
|
name: 'tableId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of table to access.',
|
description: 'The ID of the table to access.',
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue