update pagination itemcount wording to be language agnostic

This commit is contained in:
jeffvli
2025-10-03 17:53:23 -07:00
parent 9d15e8d0a4
commit f610489a61
@@ -8,6 +8,7 @@ import { useRef } from 'react';
import styles from './pagination.module.css';
import { Icon } from '/@/shared/components/icon/icon';
import { Separator } from '/@/shared/components/separator/separator';
import { Text } from '/@/shared/components/text/text';
import { useContainerQuery } from '/@/shared/hooks/use-container-query';
@@ -64,7 +65,7 @@ export const Pagination = ({
/>
{containerQuery.isSm && totalItemCount && (
<Text isNoSelect weight={500}>
{currentPageStartIndex} - {currentPageEndIndex} of {totalItemCount}
{currentPageStartIndex} - {currentPageEndIndex} <Separator /> {totalItemCount}
</Text>
)}
</div>