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
Hi, i can use this with a fixed value like <ion-icon md-name="settings"></ion-icon>, but it won't work with interpolated/bind values like <ion-icon [md-name]="variable"></ion-icon> or <ion-icon md-name="{{variable}}"></ion-icon>.
The text was updated successfully, but these errors were encountered:
The problem is your css or font is tied to the attribute md-name, but when you interpolate or bind, the attribute seems to be removed form the html. A quick workaround is to add an extra empty md-name when interpolating: <ion-icon md-name [md-name]="'settings'"></ion-icon>
Hi, i can use this with a fixed value like
<ion-icon md-name="settings"></ion-icon>
, but it won't work with interpolated/bind values like<ion-icon [md-name]="variable"></ion-icon>
or<ion-icon md-name="{{variable}}"></ion-icon>
.The text was updated successfully, but these errors were encountered: