change word

This commit is contained in:
Peter Maquiran
2023-06-12 10:05:59 +01:00
parent e2cd5d0d8b
commit 55b1f488cb
10 changed files with 28 additions and 102 deletions
@@ -32,6 +32,8 @@ export class AllProcessesPage implements OnInit {
listSubscription : {
delete(): void;
}
routerSubscription;
constructor(
@@ -58,10 +60,18 @@ export class AllProcessesPage implements OnInit {
this.dynamicSearch();
this.routerSubscription = this.router.events.subscribe((event) => {
if (event instanceof NavigationEnd && event.url.includes('/home/gabinete-digital')) {
// this.refreshing();
this.checkFilter();
}
});
}
ngOnDestroy() {
this.listSubscription.delete()
this.routerSubscription?.unsubscribe();
}