Fixed changing pages and stuff

This commit is contained in:
Zakary Timson 2018-06-28 19:27:34 -04:00
parent 9430642b5d
commit 76bb80d159
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@ztimson/ng-datatable",
"version": "1.7.0",
"version": "1.7.1",
"homepage": "https://github.com/ztimson/ng-datatable",
"license": "Apache-2.0",
"author": {

View File

@ -79,9 +79,8 @@ export class NgDatatableComponent implements OnInit {
}
if(this.paginate && this.processedData) {
this.page = 1;
this.pageChanged.emit(this.page);
this.pages = Array(Math.ceil(this.processedData.length / this.pageLength)).fill(0).map((ignore, i) => i + 1);
if(this.page > this.pages.length) this.page = this.pages.length;
this.pagedData = this.processedData.filter((ignore, i) => i >= (this.page - 1) * this.pageLength && i < this.page * this.pageLength);
} else {
this.pagedData = this.processedData;