Skip to content

Commit 22248a5

Browse files
committed
fix(components): fix totalLength design
1 parent 5f3858b commit 22248a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-formio/src/components/pagination/pagination.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export function Pagination(props: PaginationProps) {
126126
)}
127127
{totalLength !== undefined && (
128128
<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")}
129+
{i18n("Total")}: <strong className='mx-1'>{new Intl.NumberFormat(undefined).format(totalLength)}</strong> {i18n("items")}
130130
</li>
131131
)}
132132
</nav>

0 commit comments

Comments
 (0)