Prevent pagination until there is data

This commit is contained in:
Zakary Timson 2018-06-28 16:44:19 -04:00
parent 0fb93f723e
commit feda2b6c53
2 changed files with 2 additions and 2 deletions

View File

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

View File

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