fix(export): hide finish time until grouped load completes

This commit is contained in:
aits2026
2026-03-05 17:24:14 +08:00
parent 835ec4782c
commit 7cc2961538

View File

@@ -3858,7 +3858,7 @@ function ExportPage() {
loaded, loaded,
statusLabel: getLoadDetailStatusLabel(loaded, total, hasStarted), statusLabel: getLoadDetailStatusLabel(loaded, total, hasStarted),
startedAt: earliestStart, startedAt: earliestStart,
finishedAt: latestFinish finishedAt: loaded >= total ? latestFinish : undefined
} }
}, [getLoadDetailStatusLabel, sessionLoadTraceMap]) }, [getLoadDetailStatusLabel, sessionLoadTraceMap])