fix(Data Table Node): Change copy for Limit to indicate it applies per input row (#27813)

This commit is contained in:
Charlie Kolb
2026-04-01 12:05:04 +02:00
committed by GitHub
parent dc7e493fd0
commit a061bc6c65
2 changed files with 4 additions and 4 deletions
@@ -31,7 +31,7 @@ export const description: INodeProperties[] = [
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
displayName: 'Limit Per Input Row',
name: 'limit',
type: 'number',
displayOptions: {
@@ -28,7 +28,7 @@ export const description: INodeProperties[] = [
displayOptions,
},
{
displayName: 'Limit',
displayName: 'Limit Per Input Row',
name: 'limit',
type: 'number',
default: ROWS_LIMIT_DEFAULT,
@@ -88,8 +88,8 @@ export async function execute(
this: IExecuteFunctions,
index: number,
): Promise<INodeExecutionData[]> {
const returnAll = this.getNodeParameter('returnAll', index) as boolean;
const limit = this.getNodeParameter('limit', index, ROWS_LIMIT_DEFAULT) as number;
const returnAll = this.getNodeParameter('returnAll', index);
const limit = this.getNodeParameter('limit', index, ROWS_LIMIT_DEFAULT);
const options = this.getNodeParameter('options', index, {}) as {
filterName?: string;
sortField?: string;