type check

This commit is contained in:
Mel O'Hagan 2022-09-05 16:57:50 +01:00
parent 67f123d60f
commit 00f12698d7
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ module GoogleSheetsModule {
const rows = await sheet.getRows()
const row = rows[query.rowIndex]
if (row) {
const updateValues = JSON.parse(query.row)
const updateValues = typeof query.row === "string" ? JSON.parse(query.row) : query.row
for (let key in updateValues) {
row[key] = updateValues[key]
}