mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-13 13:57:29 -08:00
Fix for issue #406
This commit is contained in:
parent
51793c72bd
commit
01ee72f42f
|
@ -444,7 +444,7 @@ export class GoogleSheet {
|
||||||
|
|
||||||
// Loop over all the items and find the one with the matching value
|
// Loop over all the items and find the one with the matching value
|
||||||
for (rowIndex = dataStartRowIndex; rowIndex < inputData.length; rowIndex++) {
|
for (rowIndex = dataStartRowIndex; rowIndex < inputData.length; rowIndex++) {
|
||||||
if (inputData[rowIndex][returnColumnIndex].toString() === lookupValue.lookupValue.toString()) {
|
if (inputData[rowIndex][returnColumnIndex]?.toString() === lookupValue.lookupValue.toString()) {
|
||||||
returnData.push(inputData[rowIndex]);
|
returnData.push(inputData[rowIndex]);
|
||||||
|
|
||||||
if (returnAllMatches !== true) {
|
if (returnAllMatches !== true) {
|
||||||
|
|
Loading…
Reference in a new issue