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 2f67bd2 commit c0d8bc5Copy full SHA for c0d8bc5
packages/components/src/array-table/index.tsx
@@ -293,7 +293,7 @@ const ArrayTablePagination: ReactFC<IArrayTablePaginationProps> = (props) => {
293
}, [totalPage, current])
294
295
const renderPagination = () => {
296
- if (!showPagination || totalPage <= 1) return
+ if (!showPagination || totalPage < 1) return
297
return (
298
<div className={cls(`${prefixCls}-pagination`, hashId)}>
299
<Space>
0 commit comments