Improve parameter naming

This commit is contained in:
Jan Oberhauser 2020-03-26 23:43:38 +01:00
parent 17fc18358b
commit 5300b71996

View file

@ -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 = [];
}