Hi, we got an issue after updating Ember to 1.13. Our em-inputs are loosing binding to the property when rendered in if statement after the condition changes. Take a look at example:
em-form model=this submit_button=false
= em-input type="text" property="myBinding"
if someCondition
= em-input type="text" property="myBinding"
else
= em-input type="text" property="myBinding"
The first input is working always. The second and the third are working depending of which one is rendered first until the condition changes.
Do you know what may be the reason for such behaviour? The case may be in using Glimmer engine after the update.