From c83b1f51f33a734fd2039bb1b063d811f38e0ac6 Mon Sep 17 00:00:00 2001 From: Zane <75694352+zanesq@users.noreply.github.com> Date: Tue, 27 Jan 2026 12:04:13 -0800 Subject: [PATCH] fix chat input text going under action buttons at certain widths (#6751) --- ui/desktop/src/components/ChatInput.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/desktop/src/components/ChatInput.tsx b/ui/desktop/src/components/ChatInput.tsx index 5bd04d03..638d3627 100644 --- a/ui/desktop/src/components/ChatInput.tsx +++ b/ui/desktop/src/components/ChatInput.tsx @@ -1236,8 +1236,9 @@ export default function ChatInput({ maxHeight: `${maxHeight}px`, overflowY: 'auto', opacity: isRecording ? 0 : 1, + paddingRight: dictationSettings?.enabled ? '180px' : '120px', }} - className="w-full outline-none border-none focus:ring-0 bg-transparent px-3 pt-3 pb-1.5 pr-32 text-sm resize-none text-textStandard placeholder:text-textPlaceholder" + className="w-full outline-none border-none focus:ring-0 bg-transparent px-3 pt-3 pb-1.5 text-sm resize-none text-textStandard placeholder:text-textPlaceholder" /> {isRecording && (