diff --git a/frontend/src/lib/components/apps/editor/appUtils.ts b/frontend/src/lib/components/apps/editor/appUtils.ts index 387d681858..f287757dc6 100644 --- a/frontend/src/lib/components/apps/editor/appUtils.ts +++ b/frontend/src/lib/components/apps/editor/appUtils.ts @@ -600,7 +600,7 @@ export function recursivelyFilterKeyInJSON( search: string, extraSearch?: string | undefined ): object { - if (json === null || json === undefined) { + if (json === null || json === undefined || typeof json != 'object') { return json } if (!search || search == '') {