Hi I have an async model in Ember (because fixtures force you to use async:true) which is not working in the template (the promise is probably not resolved).
This code for example:
{{#each tag in imagepost.tags}}
<strong class="links-no-color"><a>{{tag}}</a></strong>
{{/each}}
produce:
<App.Tag:ember625:1> <App.Tag:ember626:2> <App.Tag:ember627:3>
Doesn't Ember suppose to see that i access the tags and make the request to the tags endpoint?
How can i manually tell him to work it out? this won't work(in a component):
comments: function() {
this.get('imagepost.comments').then(function(val){ return val;});
}.property('imagepost'),