From a616c7388372b185b3b48cf4517e011e9cae6473 Mon Sep 17 00:00:00 2001 From: iven Date: Wed, 8 Apr 2026 08:51:57 +0800 Subject: [PATCH] =?UTF-8?q?fix(chat):=20input=20box=20cut=20off=20?= =?UTF-8?q?=E2=80=94=20add=20flex-shrink-0=20to=20prevent=20flex=20compres?= =?UTF-8?q?sion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The input area at the bottom of the chat panel lacked flex-shrink-0, causing the flex column layout to compress it when message content filled the Conversation area. This made the textarea only partially visible and the scrollbar unable to reach the bottom of the input area. --- desktop/src/components/ChatArea.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/components/ChatArea.tsx b/desktop/src/components/ChatArea.tsx index 33cf9ed..1a4698c 100644 --- a/desktop/src/components/ChatArea.tsx +++ b/desktop/src/components/ChatArea.tsx @@ -481,7 +481,7 @@ export function ChatArea() { {/* Input */} -
+
{/* Suggestion chips */} {!isStreaming && suggestions.length > 0 && !messages.some(m => m.error) && (