mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
fix(Google Sheets Node): Do not delete row_number key from input item (#13158)
This commit is contained in:
@@ -278,7 +278,9 @@ export async function autoMapInputData(
|
||||
}
|
||||
});
|
||||
if (item.json[ROW_NUMBER]) {
|
||||
delete item.json[ROW_NUMBER];
|
||||
const { [ROW_NUMBER]: _, ...json } = item.json;
|
||||
returnData.push(json);
|
||||
return;
|
||||
}
|
||||
returnData.push(item.json);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user