diff --git a/web/app/components/workflow/nodes/llm/components/json-schema-config-modal/visual-editor/edit-card/index.tsx b/web/app/components/workflow/nodes/llm/components/json-schema-config-modal/visual-editor/edit-card/index.tsx index 4023a937fd..c91e76b557 100644 --- a/web/app/components/workflow/nodes/llm/components/json-schema-config-modal/visual-editor/edit-card/index.tsx +++ b/web/app/components/workflow/nodes/llm/components/json-schema-config-modal/visual-editor/edit-card/index.tsx @@ -39,21 +39,21 @@ type EditCardProps = { const TYPE_OPTIONS = [ { value: Type.string, text: 'string' }, { value: Type.number, text: 'number' }, - // { value: Type.boolean, text: 'boolean' }, + { value: Type.boolean, text: 'boolean' }, { value: Type.object, text: 'object' }, { value: ArrayType.string, text: 'array[string]' }, { value: ArrayType.number, text: 'array[number]' }, - // { value: ArrayType.boolean, text: 'array[boolean]' }, + { value: ArrayType.boolean, text: 'array[boolean]' }, { value: ArrayType.object, text: 'array[object]' }, ] const MAXIMUM_DEPTH_TYPE_OPTIONS = [ { value: Type.string, text: 'string' }, { value: Type.number, text: 'number' }, - // { value: Type.boolean, text: 'boolean' }, + { value: Type.boolean, text: 'boolean' }, { value: ArrayType.string, text: 'array[string]' }, { value: ArrayType.number, text: 'array[number]' }, - // { value: ArrayType.boolean, text: 'array[boolean]' }, + { value: ArrayType.boolean, text: 'array[boolean]' }, ] const EditCard: FC = ({