Open billdami opened 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.
Label
"color-red"
this.someProp
Given the following template:
The
Label
's class will correctly change to"color-red"
whenthis.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.