fix(Google Sheets Node): Do not delete row_number key from input item (#13158)

This commit is contained in:
Michael Kret
2025-02-11 10:01:37 +02:00
committed by GitHub
parent 67b951ee07
commit da5e4be0fd
2 changed files with 7 additions and 3 deletions

View File

@@ -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);
});