-
Notifications
You must be signed in to change notification settings - Fork 20
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
Errors on certain route transitions #83
Comments
I was able to prevent the first error by changing Line 6 in 5715a2d
I think It also doesn't prevent the second error from happening. |
> The first one is thrown when transitioning between routes with the same name but different params (e.g. from /articles/1 to /articles/2). The error is: mike-north#83
This fixes the bug: > The first one is thrown when transitioning between routes with the same name but different params (e.g. from /articles/1 to /articles/2). The error is: ref mike-north#83
I noticed that
ember-perf
throws errors on certain route transitions.The first one is thrown when transitioning between routes with the same name but different params (e.g. from
/articles/1
to/articles/2
). The error is:which is thrown in
ember-perf/addon/core/transition-data.js
Line 43 in 5715a2d
I think the reason for this is that
activateRoute
fromember-perf/addon/core/transition-data.js
Line 26 in 5715a2d
this.routes
stays empty.The second error happens when transitioning between routes with the same name, but different query params (e.g. from
/bookmarks?category=news
to/bookmarks?category=politics
).The error is
which is thrown in
ember-perf/addon/services/ember-perf.js
Line 68 in 5715a2d
I created a basic Ember app at https://github.com/galfert/ember-perf-bugs that reproduces these two errors.
The text was updated successfully, but these errors were encountered: