I'm trying to figure out how to access a nested model in my fixture data. I can perfectly access the name, img_url etc. in an {{each}} loop, but i get [Object, object] if i try to do {{address.street}}
. The model below:
App.Test = DS.Model.extend({
name: attr(),
img_url: attr(),
description: attr(),
address: {
street: attr(),
number: attr(),
zip_code: attr(),
city: attr()
}
});