GwtMaterialDesign / gwt-material-table

A complex table component designed for the material design specifications
https://gwtmaterialdesign.github.io/gmd-table-demo/
Apache License 2.0
26 stars 31 forks source link

updatePageNumber bug on MaterialDataPager #183

Closed happyhua closed 4 years ago

happyhua commented 4 years ago

There is a small bug on MaterialDataPager.

pageSelection.updatePageNumber(currentPage - 1);

should be

pageSelection.updatePageNumber(currentPage);

https://github.com/GwtMaterialDesign/gwt-material-table/blob/master/src/main/java/gwt/material/design/client/ui/pager/MaterialDataPager.java#L111-L112