Skip to content

Commit 9dae734

Browse files
author
zhangqin3
committed
[fixed] Negative page number in Pagination when ellipsis=true and items=1
1 parent 7f3ec2d commit 9dae734

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Pagination.js

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ const Pagination = React.createClass({
5151
if(!hasHiddenPagesAfter){
5252
endPage = items;
5353
startPage = items - maxButtons + 1;
54+
if(startPage < 1){
55+
startPage = 1;
56+
}
5457
} else {
5558
endPage = startPage + maxButtons - 1;
5659
}

0 commit comments

Comments
 (0)