From c2c77265370d1b9bf43f76a36923201ee656cf07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=91=A8=E5=B0=91=E6=B3=A2?= Date: Fri, 15 Mar 2024 23:54:45 +0800 Subject: [PATCH] fix: Component condition-builder type Time should be time not datetime --- fastapi_amis_admin/amis/components.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi_amis_admin/amis/components.py b/fastapi_amis_admin/amis/components.py index 4223bef..bfa32db 100644 --- a/fastapi_amis_admin/amis/components.py +++ b/fastapi_amis_admin/amis/components.py @@ -1062,7 +1062,7 @@ class Datetime(Date): class Time(Date): """time""" - type: str = "datetime" + type: str = "time" class Select(Field): """Drop down to select"""