You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I upgraded my app from 2.15 to 2.16 today and I think I've found a bug with the transitionTo method in the new routing service.
In 2.15 I was using the ember-router-service-polyfill addon that I have since removed. The following code was working fine but now appears to be broken:
The error I get in the jump action is: "You passed the false query parameter during a transition into index, please update to page", which I've narrowed down to be coming from this line in router.js.
It does end up working if I include both message and page in the query params hash. In short:
The text was updated successfully, but these errors were encountered:
pgrippi
changed the title
Ember 2.16 router service unable to route without all query parameters present
Ember 2.16 router service unable to transition without all query parameters present
Oct 10, 2017
I upgraded my app from 2.15 to 2.16 today and I think I've found a bug with the
transitionTo
method in the new routing service.In 2.15 I was using the
ember-router-service-polyfill
addon that I have since removed. The following code was working fine but now appears to be broken:The error I get in the
jump
action is: "You passed thefalse
query parameter during a transition into index, please update to page", which I've narrowed down to be coming from this line in router.js.It does end up working if I include both
message
andpage
in the query params hash. In short:I have created this app that shows the broken behavior: https://github.com/pgrippi/ember-216-routing-service-bug
The text was updated successfully, but these errors were encountered: