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 9988e72 commit a99641cCopy full SHA for a99641c
packages/react-formio/src/components/pagination/pagination.component.tsx
@@ -126,7 +126,7 @@ export function Pagination(props: PaginationProps) {
126
)}
127
{totalLength !== undefined && (
128
<li className={"mb-3 flex items-center"} data-testid='pagination-total-items'>
129
- {i18n("Total")}: <strong>{new Intl.NumberFormat(undefined).format(totalLength)}</strong> {i18n("items")}
+ {i18n("Total")}: <strong className='mx-1'>{new Intl.NumberFormat(undefined).format(totalLength)}</strong> {i18n("items")}
130
</li>
131
132
</nav>
0 commit comments