From 458dcf78c01dfe7708c365c2424c03ee9cc13582 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Tue, 8 Sep 2026 18:10:20 +0300 Subject: [PATCH] fix(chat): keep activity summaries visible in narrower columns Lower the compact header breakpoint from 640px to 560px while preserving file statistics on mobile. Validated with focused tests, UI type-check and lint, and the web build. --- .../ui/src/components/chat/components/LiveTurnActivity.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/src/components/chat/components/LiveTurnActivity.tsx b/packages/ui/src/components/chat/components/LiveTurnActivity.tsx index 0add7566..8bbadf12 100644 --- a/packages/ui/src/components/chat/components/LiveTurnActivity.tsx +++ b/packages/ui/src/components/chat/components/LiveTurnActivity.tsx @@ -48,7 +48,7 @@ export function LiveTurnActivity({ turn, hasLaterAssistant, expanded, onToggle, {t('chat.liveActivity.title')} {settled ? : null} {fileLabel ? ( - + {fileLabel} {summary?.hasCompleteDiff && (summary.additions > 0 || summary.deletions > 0) ? ( @@ -59,7 +59,7 @@ export function LiveTurnActivity({ turn, hasLaterAssistant, expanded, onToggle, ) : null} ) : null} - {details ? {fileLabel ? '· ' : ''}{details} : null} + {details ? {fileLabel ? '· ' : ''}{details} : null} ); const headerClass = 'w-full justify-start normal-case !pl-px !pr-2 text-[var(--tools-description)] hover:!bg-transparent active:!bg-transparent';