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
Ok ok. I suspected that it was probably related to that but since the project is pretty new I felt like I'll just describe what I did to make it work and then you're free to take that in account or not :)
Hi,
Need to replace: [class]="{ filtered: form.filter }"
With: [class.filtered]="form.filter"
And: [class]="{ hidden: item.isHiddenByFilter }"
With: [class.hidden]="item.isHiddenByFilter"
On the corresponding lines for the css to work properly.
The text was updated successfully, but these errors were encountered: