diff --git a/aggregator-web/src/components/ChatTimeline.tsx b/aggregator-web/src/components/ChatTimeline.tsx index 1e274c9..7182279 100644 --- a/aggregator-web/src/components/ChatTimeline.tsx +++ b/aggregator-web/src/components/ChatTimeline.tsx @@ -830,7 +830,8 @@ const ChatTimeline: React.FC = ({ agentId, className, isScope const details: Array<{label: string, value: string}> = []; // Handle scan results specifically - if (entry.action === 'scan_updates') { + if (entry.action === 'scan_apt' || entry.action === 'scan_dnf' || + entry.action === 'scan_winget' || entry.action === 'scan_windows') { // Extract update counts const updateCountMatch = stdout.match(/Found\s+(\d+)\s+([^:\n]+)/i); if (updateCountMatch) {