Skip to content

Commit 161eb0c

Browse files
committed
fix a error when have a custom pageStartIndex=0 and have custom ALL option in sizePerPage dropdown
Reproduce step: 1. change sizePerPage to ALL 2. selct one or more row 3. click Delete button(enable deleteRow) 4. got error
1 parent e226764 commit 161eb0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BootstrapTable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ class BootstrapTable extends Component {
872872
const currLastPage = Math.ceil(this.store.getDataNum() / sizePerPage);
873873
let { currPage } = this.state;
874874
if (currPage > currLastPage) currPage = currLastPage;
875-
result = this.store.page(currPage, sizePerPage).get();
875+
result = this.store.page(Util.getNormalizedPage(currPage), sizePerPage).get();
876876
this.setState({
877877
data: result,
878878
selectedRowKeys: this.store.getSelectedRowKeys(),

0 commit comments

Comments
 (0)