Fix on view filters (#14462)
Fixes https://github.com/twentyhq/twenty/issues/14058
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
import { isDefined } from "@/utils/validation";
|
||||
|
||||
export const parseJson = <T>(rawJson: string | boolean | null | number): T | null => {
|
||||
export const parseJson = <T>(rawJson: string | boolean | null | number | undefined): T | null => {
|
||||
try {
|
||||
if (!isDefined(rawJson)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (rawJson === '') {
|
||||
return null;
|
||||
}
|
||||
|
||||
// This is a hack to handle the case where the value is a scalar value which is part of JSON spec but not implemented before ES2019
|
||||
return JSON.parse("[" + rawJson + "]")[0];
|
||||
} catch {
|
||||
|
||||
Reference in New Issue
Block a user