fix(site): format numbers in pagination text (#7900)

This commit is contained in:
Bruno Quaresma
2023-06-07 15:25:03 +00:00
committed by GitHub
parent df82f29945
commit 5be2b77830
@@ -32,7 +32,8 @@ export const PaginationStatus = ({
>
{!isLoading ? (
<>
Showing <strong>{showing}</strong> of <strong>{total}</strong> {label}
Showing <strong>{showing}</strong> of{" "}
<strong>{total?.toLocaleString()}</strong> {label}
</>
) : (
<Box sx={{ height: 24, display: "flex", alignItems: "center" }}>