lint
This commit is contained in:
parent
00f12698d7
commit
2cdd47042c
|
@ -379,7 +379,8 @@ module GoogleSheetsModule {
|
||||||
const rows = await sheet.getRows()
|
const rows = await sheet.getRows()
|
||||||
const row = rows[query.rowIndex]
|
const row = rows[query.rowIndex]
|
||||||
if (row) {
|
if (row) {
|
||||||
const updateValues = typeof query.row === "string" ? JSON.parse(query.row) : query.row
|
const updateValues =
|
||||||
|
typeof query.row === "string" ? JSON.parse(query.row) : query.row
|
||||||
for (let key in updateValues) {
|
for (let key in updateValues) {
|
||||||
row[key] = updateValues[key]
|
row[key] = updateValues[key]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue