Added verify-login #70

This commit is contained in:
2022-10-16 12:06:18 +02:00
parent 3fe8e1503c
commit ba881aefa8
9 changed files with 93 additions and 47 deletions

View File

@@ -136,7 +136,7 @@ export class AuthUserComponent implements OnInit {
loadNextPage() {
this.authService.getFilteredUsers(this.searchCriterions).pipe(catchError(err => {
this.loading = false;
return throwError(err);
return throwError(() => err);
})).subscribe(list => {
this.totalRecords = list.totalCount;
this.users = list.users;