fix(Router): fix type (#11181)
This commit is contained in:
parent
c74a438f0c
commit
0f68351979
|
@ -546,7 +546,7 @@ export class Router {
|
||||||
resolvePromise(false);
|
resolvePromise(false);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
e => {
|
(e: any) => {
|
||||||
if (e instanceof NavigationCancelingError) {
|
if (e instanceof NavigationCancelingError) {
|
||||||
this.navigated = true;
|
this.navigated = true;
|
||||||
this.routerEvents.next(
|
this.routerEvents.next(
|
||||||
|
|
Loading…
Reference in New Issue