mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
⚡ Small improvements
This commit is contained in:
parent
42758988f2
commit
32cd54e705
|
@ -73,12 +73,12 @@ export class Airtable implements INodeType {
|
||||||
// All
|
// All
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
{
|
{
|
||||||
displayName: 'Application ID',
|
displayName: 'Base ID',
|
||||||
name: 'application',
|
name: 'application',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The ID of the application to access.',
|
description: 'The ID of the base to access.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table',
|
displayName: 'Table',
|
||||||
|
|
|
@ -44,14 +44,17 @@ export class AirtableTrigger implements INodeType {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
description: 'The ID of this base.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table ID',
|
displayName: 'Table',
|
||||||
name: 'tableId',
|
name: 'tableId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
|
description: 'The name of table to access.',
|
||||||
required: true,
|
required: true,
|
||||||
}, {
|
},
|
||||||
|
{
|
||||||
displayName: 'Trigger Field',
|
displayName: 'Trigger Field',
|
||||||
name: 'triggerField',
|
name: 'triggerField',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
|
|
Loading…
Reference in a new issue