Which version of Ember do you use? In the API docs, the behaviour of the {{each}}-Helper is just described as you say Ember API Docs - Ember.Templates.helpers …
oh, ok. I’m sorry but I thought that the {{else}} is what doesn’t happen and therefore you don’t know if the array is empty or not…? I’m no native speaker so sorry if I got you wrong
I’m using the isPending property on a hasMany model like this:
{{#if model.posts.isPending}}
<div>I'm loading the posts...</div>
{{else}}
{{#each model.posts as |post|}}
<div>{{post.title}}</div>
{{else}}
<div>There are no posts</div>
{{/each}}
{{/if}}