From e09191ce3323af42e2dc9fe59f44ed526dd1fc8c Mon Sep 17 00:00:00 2001 From: Thomas Kosiewski Date: Tue, 16 Dec 2025 19:01:21 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20fix:=20softer=20question=20indic?= =?UTF-8?q?ator=20color=20+=20Enter=20key=20to=20advance?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replace bright yellow with plan-mode blue for 'Mux has a few questions' - Add Enter key handler to Other text input to advance to next question Change-Id: I39040995ad67af17ca248b1741bf193be7baa541 Signed-off-by: Thomas Kosiewski --- src/browser/components/WorkspaceStatusIndicator.tsx | 2 +- src/browser/components/tools/AskUserQuestionToolCall.tsx | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/browser/components/WorkspaceStatusIndicator.tsx b/src/browser/components/WorkspaceStatusIndicator.tsx index db2c3798bf..a42eacbb42 100644 --- a/src/browser/components/WorkspaceStatusIndicator.tsx +++ b/src/browser/components/WorkspaceStatusIndicator.tsx @@ -10,7 +10,7 @@ export const WorkspaceStatusIndicator = memo<{ workspaceId: string }>(({ workspa // Show prompt when ask_user_question is pending - make it prominent if (awaitingUserQuestion) { return ( -
+
Mux has a few questions
diff --git a/src/browser/components/tools/AskUserQuestionToolCall.tsx b/src/browser/components/tools/AskUserQuestionToolCall.tsx index 7007e7189a..7e0448ce2e 100644 --- a/src/browser/components/tools/AskUserQuestionToolCall.tsx +++ b/src/browser/components/tools/AskUserQuestionToolCall.tsx @@ -504,6 +504,12 @@ export function AskUserQuestionToolCall(props: { }, })); }} + onKeyDown={(e) => { + if (e.key === "Enter" && currentDraft.otherText.trim().length > 0) { + e.preventDefault(); + setActiveIndex(activeIndex + 1); + } + }} /> )}