mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix typo in listRows action
This commit is contained in:
parent
2454db80de
commit
d25913b529
|
@ -22,12 +22,12 @@ export const properties: INodeProperties[] = [
|
||||||
placeholder: 'Select a table',
|
placeholder: 'Select a table',
|
||||||
required: true,
|
required: true,
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getTableNameAndId',
|
loadOptionsMethod: 'getTableNames',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
// eslint-disable-next-line n8n-nodes-base/node-param-description-wrong-for-dynamic-options
|
// eslint-disable-next-line n8n-nodes-base/node-param-description-wrong-for-dynamic-options
|
||||||
description:
|
description:
|
||||||
'Choose from the list, or specify by using an expression. Provide it in the way "table_name:::table_id".',
|
'The name of SeaTable table to access. Choose from the list, or specify a name using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
|
||||||
|
|
Loading…
Reference in a new issue