Merge pull request #10983 from Budibase/fix/budi-7035

Remove coercion failure logging
This commit is contained in:
Michael Drury 2023-06-21 14:35:29 +01:00 committed by GitHub
commit a0b0570df9
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
// @ts-nocheck
import { FieldTypes } from "../../constants"
import { logging } from "@budibase/backend-core"
const parseArrayString = value => {
if (typeof value === "string") {
@ -12,7 +11,7 @@ const parseArrayString = value => {
result = JSON.parse(value.replace(/'/g, '"'))
return result
} catch (e) {
logging.logWarn("Could not parse row value", e)
return value
}
}
return value