fix(Google Sheets Node): Return empty response if no rows updated (#6407)
This commit is contained in:
@@ -377,6 +377,9 @@ export async function execute(
|
||||
if (nodeVersion < 4 || dataMode === 'autoMapInputData') {
|
||||
return items;
|
||||
} else {
|
||||
if (!updateData.length) {
|
||||
return [];
|
||||
}
|
||||
return this.helpers.returnJsonArray(mappedValues);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user