From 43c8f144704074080f0fee86eda8db22dc523267 Mon Sep 17 00:00:00 2001 From: dswbx Date: Mon, 7 Jul 2025 08:41:06 +0200 Subject: [PATCH] fix jsonv literal on Field.tsx --- app/src/ui/components/form/json-schema-form/Field.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/ui/components/form/json-schema-form/Field.tsx b/app/src/ui/components/form/json-schema-form/Field.tsx index e516b8f4..53820eb4 100644 --- a/app/src/ui/components/form/json-schema-form/Field.tsx +++ b/app/src/ui/components/form/json-schema-form/Field.tsx @@ -64,7 +64,7 @@ const FieldImpl = ({ const id = `${name}-${useId()}`; const required = typeof _required === "boolean" ? _required : ctx.required; - if (!isTypeSchema(schema)) + if (!schema) return (
             [Field] {path} has no schema ({JSON.stringify(schema)})