From a99641c4ca509ea07f224c3ed3f59b8f8b633009 Mon Sep 17 00:00:00 2001 From: Romain Lenzotti Date: Tue, 19 Sep 2023 16:45:38 +0200 Subject: [PATCH] fix(components): fix totalLength design --- .../src/components/pagination/pagination.component.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-formio/src/components/pagination/pagination.component.tsx b/packages/react-formio/src/components/pagination/pagination.component.tsx index 21cf2ac..12de7de 100644 --- a/packages/react-formio/src/components/pagination/pagination.component.tsx +++ b/packages/react-formio/src/components/pagination/pagination.component.tsx @@ -126,7 +126,7 @@ export function Pagination(props: PaginationProps) { )} {totalLength !== undefined && (
  • - {i18n("Total")}: {new Intl.NumberFormat(undefined).format(totalLength)} {i18n("items")} + {i18n("Total")}: {new Intl.NumberFormat(undefined).format(totalLength)} {i18n("items")}
  • )}