From 15b0f112756aef51f43e41a132a962a1bde035bf Mon Sep 17 00:00:00 2001 From: dotta Date: Wed, 8 Apr 2026 09:11:21 -0500 Subject: [PATCH] Keep issue chat composer visible while typing --- ui/src/components/IssueChatThread.test.tsx | 39 +++++ ui/src/components/IssueChatThread.tsx | 169 +++++++++++---------- 2 files changed, 127 insertions(+), 81 deletions(-) diff --git a/ui/src/components/IssueChatThread.test.tsx b/ui/src/components/IssueChatThread.test.tsx index f292646a..17ea34d6 100644 --- a/ui/src/components/IssueChatThread.test.tsx +++ b/ui/src/components/IssueChatThread.test.tsx @@ -52,13 +52,19 @@ vi.mock("./MarkdownEditor", () => ({ value = "", onChange, placeholder, + className, + contentClassName, }: { value?: string; onChange?: (value: string) => void; placeholder?: string; + className?: string; + contentClassName?: string; }) => (