mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
⚡ Improve parameter naming
This commit is contained in:
parent
17fc18358b
commit
5300b71996
|
@ -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 = [];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue