Skip to content

Commit d385b4e

Browse files
authored
fix(ui): missing i18n key (#500)
## What type of PR is this? /kind bug ## What this PR does / why we need it: fix missing i18n key
1 parent 76c3845 commit d385b4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/pages/insight/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,8 @@ const Insight = () => {
403403
<div className={styles.footer}>
404404
<Pagination
405405
total={pageParams?.total}
406-
showTotal={(total, range) =>
407-
`${range[0]}-${range[1]} ${total} `
406+
showTotal={(total: number, range: any[]) =>
407+
`${range[0]}-${range[1]} ${t('Total')} ${total} `
408408
}
409409
pageSize={pageParams?.pageSize}
410410
current={pageParams?.pageNo}

0 commit comments

Comments
 (0)