bakerac4 / glimmer-native

77 stars 5 forks source link

Inline `{{if}}` helper does not re-render after condition updates to `false` #21

Open billdami opened 5 years ago

billdami commented 5 years ago

Given the following template:

<Label 
    text="Foo" 
    class="{{if this.someProp "color-red"}}"
/>

The Label's class will correctly change to "color-red" when this.someProp becomes true. However, if the property later changes back to false, the "color-red" class will remain, instead of being removed like it should be.