fix: update logs table total count display

- Replace `logs.length` with `logCount` in pagination information
- Ensure accurate total log count is displayed in the logs table
This commit is contained in:
1808837298@qq.com
2025-02-06 14:56:23 +08:00
parent 562c66330c
commit f7a4016d53

View File

@@ -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,