Commit df848c3a by 1808837298@qq.com

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
parent 4eefb778
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment