From 138ad31a3292aef19c57b6ff4d75ee7a77bede6a Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 20 Feb 2026 12:59:02 -0300 Subject: [PATCH] update: sync for alm --- src/ui_server/mod.rs | 5 ----- ui/suite/chat/chat.css | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/ui_server/mod.rs b/src/ui_server/mod.rs index c297c29..1c94788 100644 --- a/src/ui_server/mod.rs +++ b/src/ui_server/mod.rs @@ -922,17 +922,12 @@ async fn handle_task_progress_ws_proxy( // Log manifest_update messages for debugging let is_manifest = text.contains("manifest_update"); if is_manifest { - info!( - "[WS_PROXY] Forwarding manifest_update to client: {}...", - &text[..text.len().min(200)] - ); } else if text.contains("task_progress") { debug!("[WS_PROXY] Forwarding task_progress to client"); } match client_tx.send(AxumMessage::Text(text)).await { Ok(()) => { if is_manifest { - info!("[WS_PROXY] manifest_update SENT successfully to client"); } } Err(e) => { diff --git a/ui/suite/chat/chat.css b/ui/suite/chat/chat.css index d670f7b..2321eb3 100644 --- a/ui/suite/chat/chat.css +++ b/ui/suite/chat/chat.css @@ -253,7 +253,7 @@ .bot-message { background: var(--chat-color2, var(--surface, var(--card, #2a2a2a))); - color: #000000 !important; + color: #ffffff !important; border-bottom-left-radius: 4px; border: 1px solid var(--chat-color1, rgba(0, 0, 0, 0.2)); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); @@ -270,7 +270,7 @@ .bot-message h2, .bot-message h3, .bot-message h4 { - color: #000000 !important; + color: #ffffff !important; } /* Markdown content in bot messages */