1
0
Fork 0
mirror of synced 2024-09-28 23:31:43 +12:00

Parse incoming row as JSON

This commit is contained in:
Mel O'Hagan 2022-09-05 16:55:38 +01:00
parent 1ef399d64d
commit 02b16f22c1

View file

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