-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Query-params only Link-Tos do not update anymore when route/url change #11533
Comments
Can you provide a JSBin with an older version where you demonstrate this working? I can see the 'a' query param is set on the ApplicationController - which is always active.. Seems like normal behaviour having a=[something] for each route. |
Here a version with 1.10 http://output.jsbin.com/dixigo You will see that the first link (params 1) href will update when you move from route to route (by clicking the bottom 2 links). This is not the case with the version using ember 1.13: http://output.jsbin.com/vexeho |
Update bins: You should compare against working 1.10 version: Thanks |
@jmurphyau are you familiar with the code behind this? I would try to fix this, but I do not know where to start... |
The In 1.10, there is logic between:
That runs every time the URL changes - in 1.13 this gets run on I'm wondering if |
Fixed by #11561. |
Please consider http://output.jsbin.com/vexeho#/no-model
You will see that if you change the route from "no-model" to "model" the 2 query-params route will not refresh to show the new route (it will still have a href with /no-model?a=).
In the previous version of Ember, it would update based on the current page/url.
The text was updated successfully, but these errors were encountered: