-
-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clearHistory doesn't work with router-outlet #685
Comments
Hey, @sebawita with the current implementation this is by design. It is expected that clearHistory would work with page-router-outlet (where we have page navigation) and not with router-outlet. |
@NickIliev I am aware that this is done by design. Maybe for router-outlet, we could require the router-outlet components to be named. Like: As it is, navigating in router-outlet causes the navigation stack to grow with no way clear it, but with routerExtension able to operate on it. This is somewhat confusing. |
So, what's the status here? How can I clear history using a router-outlet? |
Solved? |
When navigating with
clearHistory
flag set totrue
withrouter-outlet
, the history doesn't get cleared. So the flag has no effect at all.Button text="login" [nsRouterLink]="['/main']" clearHistory="true"></Button>
The same applies when calling navigate through code:
When I call the canGoBack() after navigating I always get true.
this.routerExtensions.canGoBack()
=> returns true;The text was updated successfully, but these errors were encountered: