server : (webui) increase edit textarea size (#11763)

This commit is contained in:
Woof Dog 2025-02-08 19:09:55 +00:00 committed by GitHub
parent aaa5505307
commit e6e6583199
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -92,7 +92,7 @@ export default function ChatMessage({
<>
<textarea
dir="auto"
className="textarea textarea-bordered bg-base-100 text-base-content w-[calc(90vw-8em)] lg:w-96"
className="textarea textarea-bordered bg-base-100 text-base-content max-w-2xl w-[calc(90vw-8em)] h-24"
value={editingContent}
onChange={(e) => setEditingContent(e.target.value)}
></textarea>