🤖 fix: softer question indicator color + Enter key to advance #1195
+7
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix two issues with the
ask_user_questiontool UI:Softer indicator color - The "Mux has a few questions" status indicator was using a bright yellow that was harsh on the eyes. Changed to plan-mode blue which is softer and semantically indicates "awaiting user input".
Enter key advances - When selecting "Other" and typing a free-text answer, pressing Enter now advances to the next question (when text is non-empty).
📋 Implementation Plan
Plan: Fix ask_user_question UI Issues
Summary
Fix two issues:
Estimated net LoC: +8
Issue 1: Overly Bright Yellow Status Indicator
Problem: The "Mux has a few questions" indicator in
WorkspaceStatusIndicator.tsxuses hardcodedbg-yellow-500/20 text-yellow-400which is too bright/harsh.Solution: Use the app's plan-mode blue (
bg-plan-mode-alpha text-plan-mode-light) for consistency with "waiting for input" semantics.Issue 2: Enter Key Doesn't Advance from Other Input
Problem: When the user selects "Other" and types a free-text answer, pressing Enter does nothing.
Solution: Add
onKeyDownhandler to the Input that advances to the next question when Enter is pressed and text is non-empty.Generated with
mux• Model:anthropic:claude-opus-4-5• Thinking:high