We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b376b2c commit 43488b4Copy full SHA for 43488b4
site/src/components/PaginationWidget/PaginationHeader.tsx
@@ -43,14 +43,13 @@ export const PaginationHeader: FC<PaginationHeaderProps> = ({
43
44
{totalRecords !== 0 && currentOffsetStart !== undefined && (
45
<div>
46
- Showing {paginationUnitLabel}{" "}
+ Showing <strong>{currentOffsetStart}</strong> to{" "}
47
<strong>
48
- {currentOffsetStart}–
49
{currentOffsetStart +
50
Math.min(limit - 1, totalRecords - currentOffsetStart)}
51
</strong>{" "}
52
- (<strong>{totalRecords.toLocaleString()}</strong>{" "}
53
- {paginationUnitLabel} total)
+ of <strong>{totalRecords.toLocaleString()}</strong>{" "}
+ {paginationUnitLabel}
54
</div>
55
)}
56
</>
0 commit comments