Getting errors after updating to Ember 2.8
See original GitHub issueTypeError: Cannot read property 'currentHandlerInfos' of undefined
at getRoutes (http://localhost:7357/assets/vendor.js:200596:36)
at getRouteWithAction (http://localhost:7357/assets/vendor.js:200601:30)
at Class.compute (http://localhost:7357/assets/vendor.js:200626:33)
at Object.compute (http://localhost:7357/assets/vendor.js:31074:26)
at Object.value (http://localhost:7357/assets/vendor.js:31404:27)
at Object.read (http://localhost:7357/assets/vendor.js:31797:21)
at Object.getCellOrValue [as default] (http://localhost:7357/assets/vendor.js:26779:39)
at snapshotAndUpdateTarget (http://localhost:7357/assets/vendor.js:30179:60)
at createComponent (http://localhost:7357/assets/vendor.js:30138:5)
at Function.ComponentNodeManager_create [as create] (http://localhost:7357/assets/vendor.js:30027:17)
Not sure exactly what the cause may be.
Issue Analytics
- State:
- Created 7 years ago
- Comments:17
Top Results From Across the Web
Test failure on 2.8 upgrade: Assertion after the final ... - GitHub
When running ember test , the error shows up intermittently on my model and adapter tests. These tests are the default tests generated...
Read more >Difficulties upgrading from 2.8.3 LTS to 2.12.3 LTS - Ember.JS
I've been trying to upgrade our product from Ember 2.8.3 to Ember 2.12.3 (i.e. an LTS upgrade). It took me a lot of...
Read more >Issue upgrading ember 2.8 to 2.11 - cannot find module 'ember'
Try moving ember-cli-shims from bower.json to package.json. You can very well check and confirm for the changes between 2.8 to 2.11.
Read more >Upgrading Ember from 1.13 to 2.8.0 | by Jen Weber - Medium
The solution: ember-load-initializers was missing from app.js and my bower packages. What I should have done to upgrade my app was use the...
Read more >ember-cli-typescript - npm
Start using ember-cli-typescript in your project by running `npm i ... get nice feedback immediately when you have type errors that way!
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I would love to see an option to enable this again or something. With a warning that it goes against the traditional DDAU principles somewhat.
@ilucin the components are not specific to routes in our use cases. Think of components used across many routes and you have an action on all their parent routes
myComponentChanged
. You could fire this directly and have each route do different things, still with a generic component, not specific to the route.