Skip to content

Commit

Permalink
fix(Google Sheets Node): Fix issue with paired items not being set co…
Browse files Browse the repository at this point in the history
…rrectly (#7862)

https://community.n8n.io/t/error-unknown-top-level-item-key-paireditems-item-0/33536/

Co-authored-by: Michael Kret <michael.k@radency.com>
  • Loading branch information
2 people authored and netroy committed Nov 29, 2023
1 parent 442d449 commit 5827b7a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -266,7 +266,7 @@ export async function execute(
for (const [index, entry] of setData.entries()) {
returnData.push({
json: entry,
pairedItems: { item: index },
pairedItem: { item: index },
});
}
return returnData;
Expand Down
Expand Up @@ -435,7 +435,7 @@ export async function execute(
for (const [index, entry] of mappedValues.entries()) {
returnData.push({
json: entry,
pairedItems: { item: index },
pairedItem: { item: index },
});
}
return returnData;
Expand Down
Expand Up @@ -414,7 +414,7 @@ export async function execute(
for (const [index, entry] of mappedValues.entries()) {
returnData.push({
json: entry,
pairedItems: { item: index },
pairedItem: { item: index },
});
}
return returnData;
Expand Down

0 comments on commit 5827b7a

Please sign in to comment.