From b75b4a3c107aad264c83339b20abc5d68f5fd277 Mon Sep 17 00:00:00 2001 From: chihlasm Date: Sun, 29 Mar 2026 16:44:28 +0000 Subject: [PATCH] fix: improve TaskLane section header readability Change "Questions" and "Diagnostic Checks" headers from text-muted (#4f5666, barely visible on sidebar) to text-muted-foreground (#848b9b). Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/components/assistant/TaskLane.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/assistant/TaskLane.tsx b/frontend/src/components/assistant/TaskLane.tsx index 152890fc..7a6a5850 100644 --- a/frontend/src/components/assistant/TaskLane.tsx +++ b/frontend/src/components/assistant/TaskLane.tsx @@ -267,7 +267,7 @@ export function TaskLane({ questions, actions, sessionId, onSubmit, onClose, loa {questionTasks.length > 0 && (
-
+
Questions {questionTasks.every(q => q.state === 'done' || q.state === 'skipped') && ( @@ -358,7 +358,7 @@ export function TaskLane({ questions, actions, sessionId, onSubmit, onClose, loa {actionTasks.length > 0 && (
-
+
Diagnostic Checks {actionTasks.every(a => a.state === 'done' || a.state === 'skipped') && (