From b3fee5b56dfa9580964339290661d0c360375ceb Mon Sep 17 00:00:00 2001 From: tisonhuang Date: Thu, 5 Mar 2026 12:47:28 +0800 Subject: [PATCH] fix(export): show loading text for pending session message counts --- src/pages/ExportPage.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/ExportPage.tsx b/src/pages/ExportPage.tsx index 49d9702..6ca21e5 100644 --- a/src/pages/ExportPage.tsx +++ b/src/pages/ExportPage.tsx @@ -3832,7 +3832,7 @@ function ExportPage() { ? '--' : typeof displayedMessageCount === 'number' ? displayedMessageCount.toLocaleString('zh-CN') - : (isLoadingSessionCounts ? '统计中…' : '--') + : '获取中' return (
@@ -3910,7 +3910,6 @@ function ExportPage() {
) }, [ - isLoadingSessionCounts, lastExportBySession, nowTick, openSessionDetail,