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 5f3858b commit 22248a5Copy full SHA for 22248a5
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