I am working with an <i>
tag
<i class="actionicon icon-star" [ngClass]="{'yellow' : data.isLiked}" (click)="Like(data)"
aria-hidden="true" title="Liked"></i>
In my current setup, if data.isLiked
is true, the yellow class is applied. However, I also need to modify the 'title' value based on this condition.
If isLiked
is true, then the title should change to Unlike
; otherwise, it should be set as Like
.