From 9df11bbddf456fa85579fd568ccda660e76dccbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A5=87=E8=B6=A3=E4=BF=9D=E7=BD=97?= Date: Wed, 5 Nov 2025 20:32:04 +0800 Subject: [PATCH] =?UTF-8?q?Fix:=20=E4=BC=98=E5=8C=96=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E4=BD=93=E9=AA=8C=EF=BC=8C=E6=94=B9=E6=88=90=E5=A4=9A=E8=A1=8C?= =?UTF-8?q?=E8=BE=93=E5=85=A5=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ui/textarea.tsx | 18 ++++++++++++++++++ src/hooks/biz/use-translation-inline-edit.ts | 4 ++-- src/index.css | 2 +- src/pages/editor.tsx | 10 ++++++---- 4 files changed, 27 insertions(+), 7 deletions(-) create mode 100644 src/components/ui/textarea.tsx diff --git a/src/components/ui/textarea.tsx b/src/components/ui/textarea.tsx new file mode 100644 index 0000000..da343f2 --- /dev/null +++ b/src/components/ui/textarea.tsx @@ -0,0 +1,18 @@ +import * as React from "react"; + +import { cn } from "@/lib/utils"; + +function Textarea({ className, ...props }: React.ComponentProps<"textarea">) { + return ( +