You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When updating an {{#each}}-rendered array to be [ null, null, null ], only one iteration of the array is rendered, as if it just contained [ null ]. This rendering test passes in 3.16 and fails in 3.17:
test('rerendering array of nulls works',asyncfunction(assert){this.set('items',[false,false,false]);awaitrender(hbs` {{#each this.items as |item|}} <p>item: {{item}}</p> {{/each}} `);assert.dom('p').exists({count: 3});this.set('items',[null,null,null]);awaitsettled();assert.dom('p').exists({count: 3});});
here is an app that reproduces the issue and demonstrates that it's a regression since 3.16.
The text was updated successfully, but these errors were encountered:
When updating an
{{#each}}
-rendered array to be[ null, null, null ]
, only one iteration of the array is rendered, as if it just contained[ null ]
. This rendering test passes in 3.16 and fails in 3.17:here is an app that reproduces the issue and demonstrates that it's a regression since 3.16.
The text was updated successfully, but these errors were encountered: