From b54870cb60b20915c5fcec3eea84534a4a961c1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Sat, 8 Feb 2025 21:03:59 +0800 Subject: [PATCH] fix --- src/webui/src/helper/config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/webui/src/helper/config.ts b/src/webui/src/helper/config.ts index 5e4e982e..42204faf 100644 --- a/src/webui/src/helper/config.ts +++ b/src/webui/src/helper/config.ts @@ -148,7 +148,7 @@ const WebUiConfigSchema = Type.Object({ '0px 0px 30px 0px rgba(0, 0, 0, .07), 0px 30px 60px 0px rgba(0, 0, 0, .26), inset 0px 0px 1px 0px hsla(0, 0%, 100%, .15)', }), '--heroui-hover-opacity': Type.String({ default: '.9' }), - }), + }, { default: {} }), light: Type.Object({ '--heroui-background': Type.String({ default: '0 0% 100%' }), '--heroui-foreground-50': Type.String({ default: '240 5.88% 95%' }), @@ -282,8 +282,8 @@ const WebUiConfigSchema = Type.Object({ '0px 0px 30px 0px rgba(0, 0, 0, .04), 0px 30px 60px 0px rgba(0, 0, 0, .12), 0px 0px 1px 0px rgba(0, 0, 0, .3)', }), '--heroui-hover-opacity': Type.String({ default: '.8' }), - }), - }), + }, { default: {} }), + }, { default: {} }), }); export type WebUiConfigType = Static;