Fix actor page not loading after actor change

This commit is contained in:
Florian Dupret 2021-11-09 14:37:37 +01:00
commit 07cde058ed

View file

@ -26,9 +26,12 @@ export class DiscoverActorComponent {
private route: ActivatedRoute,
private filterService: FilterService,
private auth: AuthService) {
this.filter = this.filterService.filter;
this.route.params.subscribe((params: any) => {
this.actorId = params.actorId;
this.isAdmin = this.auth.isAdmin();
this.search();
});
}