- Replace `logs.length` with `logCount` in pagination information - Ensure accurate total log count is displayed in the logs table
@@ -846,7 +846,7 @@ const LogsTable = () => {
t('第 {{start}} - {{end}} 条,共 {{total}} 条', {
start: page.currentStart,
end: page.currentEnd,
- total: logs.length
+ total: logCount
}),
currentPage: activePage,
pageSize: pageSize,