I have a nested route that looks like this:
App.Router.map(function(){
this.resource('comment', {path: '/:commentId'}, function(){
this.route('edit');
});
});
In my markup, I have a {{#linkTo 'comment.edit' content}}
which correctly transitions and updates the URL. However, the wrong template is displaying. Instead of getting the 'edit' template, it displays the 'index' template. This only seems to be occurring in the nested route of dynamic resources. All other nested routes render the correct template. Has anyone else run into this issue in Emberjs?