From 7cc2961538079706115b48b5f54d0d63132e3d26 Mon Sep 17 00:00:00 2001 From: aits2026 Date: Thu, 5 Mar 2026 17:24:14 +0800 Subject: [PATCH] fix(export): hide finish time until grouped load completes --- src/pages/ExportPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/ExportPage.tsx b/src/pages/ExportPage.tsx index b005bb1..bd33b92 100644 --- a/src/pages/ExportPage.tsx +++ b/src/pages/ExportPage.tsx @@ -3858,7 +3858,7 @@ function ExportPage() { loaded, statusLabel: getLoadDetailStatusLabel(loaded, total, hasStarted), startedAt: earliestStart, - finishedAt: latestFinish + finishedAt: loaded >= total ? latestFinish : undefined } }, [getLoadDetailStatusLabel, sessionLoadTraceMap])