mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 03:42:16 +00:00
🐛 Fix bug with parameter being a string
This commit is contained in:
@@ -670,7 +670,7 @@ export class GoogleSheets implements INodeType {
|
|||||||
sheetId: range.sheetId,
|
sheetId: range.sheetId,
|
||||||
dimension: deletePropertyToDimensions[propertyName] as string,
|
dimension: deletePropertyToDimensions[propertyName] as string,
|
||||||
startIndex: range.startIndex,
|
startIndex: range.startIndex,
|
||||||
endIndex: range.startIndex + range.amount,
|
endIndex: parseInt(range.startIndex.toString(), 10) + parseInt(range.amount.toString(), 10),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user