From 14ff46b5cd4b2b80b41a0305952410c308353f5a Mon Sep 17 00:00:00 2001 From: lyf <1910527151@qq.com> Date: Wed, 7 Aug 2024 13:01:08 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=8C=89=E9=92=AE=E6=97=A0?= =?UTF-8?q?=E9=9A=9C=E7=A2=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/input-range.tsx | 3 ++ app/components/mask.tsx | 6 ++++ app/components/model-config.tsx | 11 +++++++ app/components/sd/sd-panel.tsx | 3 ++ app/components/settings.tsx | 52 +++++++++++++++++++++++++++++++++ app/components/ui-lib.tsx | 13 +++++++-- app/locales/cn.ts | 1 + app/locales/en.ts | 2 ++ 8 files changed, 89 insertions(+), 2 deletions(-) diff --git a/app/components/input-range.tsx b/app/components/input-range.tsx index a8ee9532b..08756e2c8 100644 --- a/app/components/input-range.tsx +++ b/app/components/input-range.tsx @@ -9,6 +9,7 @@ interface InputRangeProps { min: string; max: string; step: string; + aria: string; } export function InputRange({ @@ -19,11 +20,13 @@ export function InputRange({ min, max, step, + aria, }: InputRangeProps) { return (