Browse Source

Linting.

pull/4089/head
mike12345567 5 years ago
parent
commit
069769a5a6
  1. 5
      packages/server/src/api/controllers/row/ExternalRequest.ts

5
packages/server/src/api/controllers/row/ExternalRequest.ts

@ -181,7 +181,10 @@ module External {
function fixArrayTypes(row: Row, table: Table) {
for (let [fieldName, schema] of Object.entries(table.schema)) {
if (schema.type === FieldTypes.ARRAY && typeof row[fieldName] === "string") {
if (
schema.type === FieldTypes.ARRAY &&
typeof row[fieldName] === "string"
) {
try {
row[fieldName] = JSON.parse(row[fieldName])
} catch (err) {

Loading…
Cancel
Save