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:
fabian wohlgemuth 2022-01-24 17:01:44 +01:00 committed by GitHub
parent 7609cd32e4
commit daf91a1228
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -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.',
},
// ----------------------------------

View file

@ -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,
},
{