Fixes bug on user listing.

This commit is contained in:
gkolokythas 2019-06-20 18:06:17 +03:00
parent 499149ea93
commit a0f3192541
1 changed files with 2 additions and 0 deletions

View File

@ -124,6 +124,8 @@ export class UserListingComponent implements OnInit, AfterViewInit {
}
refresh() {
this._paginator.pageSize = 10;
this._paginator.pageIndex = 0;
this.dataSource = new UsersDataSource(this.userService, this._paginator, this.sort, this.languageService, this.snackBar, this.criteria);
}