🚀 Release 0.222.0 (#5786)

This commit is contained in:
github-actions[bot]
2023-03-30 14:53:19 +02:00
committed by GitHub
parent dd20127961
commit e92a993694
23 changed files with 145 additions and 70 deletions

View File

@@ -536,9 +536,15 @@ export class GoogleSheet {
columnNames.indexOf(name),
);
let updateValue = item[name] as string;
if (typeof updateValue === 'object') {
try {
updateValue = JSON.stringify(updateValue);
} catch (error) {}
}
updateData.push({
range: `${decodedRange.name}!${columnToUpdate}${updateRowIndex}`,
values: [[item[name] as string]],
values: [[updateValue]],
});
}
}