We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df82f29 commit 5be2b77Copy full SHA for 5be2b77
site/src/components/PaginationStatus/PaginationStatus.tsx
@@ -32,7 +32,8 @@ export const PaginationStatus = ({
32
>
33
{!isLoading ? (
34
<>
35
- Showing <strong>{showing}</strong> of <strong>{total}</strong> {label}
+ Showing <strong>{showing}</strong> of{" "}
36
+ <strong>{total?.toLocaleString()}</strong> {label}
37
</>
38
) : (
39
<Box sx={{ height: 24, display: "flex", alignItems: "center" }}>
0 commit comments