From 5300b719964c7a5548580d9abb5d9a02bbb1d744 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Thu, 26 Mar 2020 23:43:38 +0100 Subject: [PATCH] :zap: Improve parameter naming --- packages/nodes-base/nodes/Google/GoogleSheets.node.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/nodes-base/nodes/Google/GoogleSheets.node.ts b/packages/nodes-base/nodes/Google/GoogleSheets.node.ts index cea43f963..71e76698d 100644 --- a/packages/nodes-base/nodes/Google/GoogleSheets.node.ts +++ b/packages/nodes-base/nodes/Google/GoogleSheets.node.ts @@ -406,7 +406,7 @@ export class GoogleSheets implements INodeType { }, options: [ { - displayName: 'Continue If Response Is Empty', + displayName: 'Continue If Empty', name: 'continue', type: 'boolean', default: false, @@ -418,7 +418,7 @@ export class GoogleSheets implements INodeType { ], }, }, - description: 'By default, the workflow stops executing if the lookup/read does not return values', + description: 'By default, the workflow stops executing if the lookup/read does not return values.', }, { displayName: 'Return All Matches', @@ -696,7 +696,6 @@ export class GoogleSheets implements INodeType { if (returnData.length === 0 && options.continue && options.returnAllMatches) { returnData = [{}]; - } else if (returnData.length === 1 && Object.keys(returnData[0]).length === 0 && !options.continue && !options.returnAllMatches) { returnData = []; }