fix(router-outlet): change detection fires properly (#18896)

* fix(router-outlet): never detach() the entering view

fixes #18894

* add tests

* ci

* update package-lock

* circle sync runtime
This commit is contained in:
Manu MA
2019-07-26 17:13:50 +02:00
committed by Liam DeBeasi
parent 462cee5b2e
commit 962783bfba
22 changed files with 3543 additions and 2728 deletions

View File

@ -25,9 +25,6 @@ export class IonicRouteStrategy implements RouteReuseStrategy {
if (future.routeConfig !== curr.routeConfig) {
return false;
}
if (future.component !== curr.component) {
return false;
}
// checking router params
const futureParams = future.params;