Fixed: Star now showing in employee list

This commit is contained in:
2020-05-30 16:18:25 +05:30
parent dd799a8e2f
commit 95e92fc2bd
3 changed files with 11 additions and 2 deletions

View File

@ -0,0 +1,3 @@
.gold {
color: gold;
}

View File

@ -29,7 +29,13 @@
<!-- Name Column -->
<ng-container matColumnDef="name">
<mat-header-cell *matHeaderCellDef mat-sort-header>Name</mat-header-cell>
<mat-cell *matCellDef="let row"><a [routerLink]="['/employees', row.id]">{{row.name}}</a></mat-cell>
<mat-cell *matCellDef="let row">
<a [routerLink]="['/employees', row.id]">
<mat-icon matSuffix *ngIf="row.isStarred" class="gold">star
</mat-icon>
{{row.name}}
</a>
</mat-cell>
</ng-container>
<!-- Designation Column -->