Skip to content

Commit a99641c

Browse files
committed
fix(components): fix totalLength design
1 parent 9988e72 commit a99641c

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

+1-1
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)