From 268be65a7142d38b51a136f34591b3318e0eb463 Mon Sep 17 00:00:00 2001 From: Monty Date: Wed, 28 Jul 2021 12:18:47 +0800 Subject: [PATCH] fix: Add the totalBoundaryShowSizeChanger property (#31549) Fix the problem of the wrong type of totalBoundaryShowSizeChanger --- components/pagination/Pagination.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/pagination/Pagination.tsx b/components/pagination/Pagination.tsx index 948adcf8d8..1f83340740 100644 --- a/components/pagination/Pagination.tsx +++ b/components/pagination/Pagination.tsx @@ -43,6 +43,7 @@ export interface PaginationProps { ) => React.ReactNode; role?: string; showLessItems?: boolean; + totalBoundaryShowSizeChanger?: number; } export type PaginationPosition = 'top' | 'bottom' | 'both';