diff --git a/pwa/src/templates/templateParts/schemaForm/SchemaFormTemplate.tsx b/pwa/src/templates/templateParts/schemaForm/SchemaFormTemplate.tsx index d1d2f8a3..6754d2ff 100644 --- a/pwa/src/templates/templateParts/schemaForm/SchemaFormTemplate.tsx +++ b/pwa/src/templates/templateParts/schemaForm/SchemaFormTemplate.tsx @@ -25,6 +25,7 @@ import { getIdFromObjectId } from "../../../services/getIdFromObjectId"; export type SchemaInputType = | "string" | "boolean" + | "bool" | "array" | "integer" | "int" @@ -289,7 +290,7 @@ const FormFieldGroup: React.FC = ({ /> )} - {type === "boolean" && ( + {(type === "boolean" || type === "bool") && (