From afd7139d39bcb8c088f6a7a82f349c876c2e78d6 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 4 Sep 2025 20:57:43 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8(frontend)=20increase=20chat=20message?= =?UTF-8?q?=20limit=20to=202000=20characters?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Expand text area input character limit from default to 2000 characters to allow users more space for detailed chat messages. Provides better user experience for longer form communication within chat interface while maintaining reasonable message size constraints. --- .../src/features/rooms/livekit/components/chat/Input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/features/rooms/livekit/components/chat/Input.tsx b/src/frontend/src/features/rooms/livekit/components/chat/Input.tsx index b20280a7..e3de0362 100644 --- a/src/frontend/src/features/rooms/livekit/components/chat/Input.tsx +++ b/src/frontend/src/features/rooms/livekit/components/chat/Input.tsx @@ -101,7 +101,7 @@ export const ChatInput = ({ }} placeholderStyle={'strong'} spellCheck={false} - maxLength={500} + maxLength={2000} aria-label={t('textArea.label')} />