From 584311c3b65ea06c04060e7dcc8030d4f4054e84 Mon Sep 17 00:00:00 2001 From: Fimeg Date: Sat, 20 Dec 2025 18:54:16 -0500 Subject: [PATCH] fix: Remove last scan_updates reference\n\n- Line 833 in ChatTimeline still had scan_updates\n- Updated to check platform-specific scans (apt, dnf, winget, windows)\n- Verifying: no scan_updates references remain in frontend --- aggregator-web/src/components/ChatTimeline.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) {