I was looking for the answer to this question, but could not find it. The ember application I'm working on causes a console error:
WARNING: The immediate parent route did not render into the main outlet and the default 'into' option may not be expected
I found this that offers a fix: https://github.com/emberjs/ember.js/pull/1838 , but did not know how to implement it.
A bit of code from our application that calls this refers to the route renderTemplate function:
renderTemplate: function(controller, model) {
this.render({outlet: 'page'});
this.render('stageSidebar', {outlet: 'stage_sidebar'});
}
The problem is with calling "this.render" over 1X in the renderTemplate function.
Everything is displayed correctly, all data is filled out, but these errors drive me crazy on the console, and I was wondering if someone came across this or has more information about the fix in the link above?
Thank!
source