I have Ride
component, and in the end of the ride the Ride Summary
is shown.
The right summary has a button to \"Start another ride\" which
Router
doesn't navigate if the route
and params
haven't changed, by default.
To make it navigate you can define
routerCanReuse(nextInstruction: ComponentInstruction,
prevInstruction: ComponentInstruction){
return false;
}
in your component, that you want to renvaigate to, and call
Router.renavigate();
this.router.navigate('RouteName', this.routeParams.params)
to renavigate.