Browse Source

Do not reload on close

pull/5868/head
Thomas Kaul 2 days ago
parent
commit
2bfc3e28f2
  1. 1
      apps/client/src/app/components/admin-users/admin-users.component.ts

1
apps/client/src/app/components/admin-users/admin-users.component.ts

@ -307,7 +307,6 @@ export class GfAdminUsersComponent implements OnDestroy, OnInit {
.afterClosed() .afterClosed()
.pipe(takeUntil(this.unsubscribeSubject)) .pipe(takeUntil(this.unsubscribeSubject))
.subscribe(() => { .subscribe(() => {
this.fetchUsers();
this.router.navigate(['.'], { relativeTo: this.route }); this.router.navigate(['.'], { relativeTo: this.route });
}); });
} }

Loading…
Cancel
Save