Removing logging of error in coercion - this was creating noise in errors channel.
This commit is contained in:
parent
5c14712c7f
commit
e1741937ae
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue