Parameters required for generating dynamic segments
See original GitHub issueAfter upgrade to 0.5.0-beta.10
, I start getting the below errors:
"Assertion Failed: You attempted to define a `{{link-to "enterprise.index"}}` but did not pass the parameters required for generating its dynamic segments. There is no route named enterprise.index"
Going back to 0.5.0-beta.9
. My all dependencies below:
{
...
"devDependencies": {
"broccoli-asset-rev": "~2.5.0",
"ember-ajax": "~2.5.5",
"ember-cli": "~2.12.0-beta.1",
"ember-cli-app-version": "~2.0.1",
"ember-cli-babel": "~5.2.4",
"ember-cli-dependency-checker": "~1.3.0",
"ember-cli-eslint": "~3.0.2",
"ember-cli-htmlbars": "~1.1.1",
"ember-cli-htmlbars-inline-precompile": "~0.3.6",
"ember-cli-inject-live-reload": "~1.6.1",
"ember-cli-qunit": "~3.1.1",
"ember-cli-sass": "~6.1.1",
"ember-cli-shims": "~1.0.2",
"ember-cli-sri": "~2.1.1",
"ember-cli-uglify": "~1.2.0",
"ember-cli-webfont": "~0.0.3",
"ember-data": "~2.12.0-beta.4",
"ember-engines": "~0.5.0-beta.9",
"ember-export-application-global": "~1.1.1",
"ember-load-initializers": "~0.6.3",
"ember-resolver": "~2.1.1",
"ember-simple-auth": "~1.2.0",
"ember-simple-auth-token": "~2.1.0",
"ember-source": "~2.12.0-beta.2",
"ember-truth-helpers": "~1.3.0",
"loader.js": "~4.2.2"
},
"engines": {
"node": ">= 6.10.0"
}
...
}
Issue Analytics
- State:
- Created 7 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Dynamic Segmentation With Dynamic Parameters in Power BI
Learn how to form some dynamic segmentations by using dynamic parameters right inside of Power BI. This can give you great insights into ......
Read more >ember 2.10 undefined route dynamic segment no ... - GitHub
When upgrading from 2.9.1 to 2.10 I ran into the following exception. "Assertion Failed: You attempted to define a `{{link-to "timecards"}}` but ...
Read more >Something about dynamic segments in ember.js?
I am a new starter in ember.js, and recently i get a problem like this. Assertion Failed: You attempted to define a `{{link-to...
Read more >About automatically created data segments - Google Ads Help
For dynamic remarketing, Google Ads also uses the custom parameters in your tag to create more specific data segments based on actions taken...
Read more >Dynamic segmentation—Help | ArcGIS for Desktop
Dynamic segmentation (DynSeg) is the process of computing the map location (shape) of events stored in an event table. Dynamic segmentation is what...
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
Can you put together a demo repo for us to look at? Are you saying that things worked properly on 0.5.0-beta.9, but not on 0.5.0-beta.10? Any other dependencies change?
The changes from -beta.9 to -beta.10 were almost exclusively related to CSS handling. I’m not sure why those changes would trigger this error.
I finded my mistake. I am trying to test the routable engine inside the dummy app, only thing I forgoten is create the
application.js
andapplication.hbs
inside the dummy app.After this everthing works.
Thanks and sorry for disturbing…