Skip to content

Commit 5be2b77

Browse files
fix(site): format numbers in pagination text (#7900)
1 parent df82f29 commit 5be2b77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

site/src/components/PaginationStatus/PaginationStatus.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ export const PaginationStatus = ({
3232
>
3333
{!isLoading ? (
3434
<>
35-
Showing <strong>{showing}</strong> of <strong>{total}</strong> {label}
35+
Showing <strong>{showing}</strong> of{" "}
36+
<strong>{total?.toLocaleString()}</strong> {label}
3637
</>
3738
) : (
3839
<Box sx={{ height: 24, display: "flex", alignItems: "center" }}>

0 commit comments

Comments
 (0)