HTML
<th>Car Name <i (click)="sortData('carName')" [ngClass]="custom" class="fa sort-icon"></i></th>
<th>Car Status <i (click)="sortData('carStatus')" [ngClass]="custom" class="fa sort-icon"></i></th>
TS
sortData(name) {
this.pipeFlag = !this.pipeFlag;
this.custom = (this.pipeFlag === true) ? 'fa-arrow-down' : 'fa-arrow-up';
}
I am trying to apply a font awesome class to table heads on click but it gets applied to both table heads. How do i apply it only to the table head that I click?