Fix on route change event

This commit is contained in:
Peter Maquiran
2021-07-16 15:43:37 +01:00
parent 144444e1b2
commit 5e6e8e17f3
18 changed files with 130 additions and 119 deletions
@@ -17,9 +17,12 @@
refreshingSpinner="circles"
refreshingText="A actualizar...">
</ion-refresher-content>
</ion-refresher>
<div class="overflow-y-auto height-100 width-100">
<ion-progress-bar type="indeterminate" *ngIf="skeletonLoader"></ion-progress-bar>
<div >
<ion-list part="divo">
<ion-item
@@ -68,13 +68,9 @@ export class DespachosPage implements OnInit {
//Inicializar segment
this.segment = "despachos";
// update list
const location = window.location
const pathname = location.pathname + location.search
this.router.events.forEach((event) => {
if (event instanceof NavigationEnd && event.url.startsWith(pathname)) {
console.log('update', pathname)
if (event instanceof NavigationEnd &&
event.url.startsWith('/home/gabinete-digital?despachos=true')) {
this.LoadList();
}
});