mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix(site): format numbers in pagination text (#7900)
This commit is contained in:
@@ -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" }}>
|
||||
|
||||
Reference in New Issue
Block a user