fix frozen column representative

This commit is contained in:
Çetin 2021-12-21 15:28:42 +03:00
parent 6f6482613e
commit 974fa57761

View File

@ -174,7 +174,10 @@
<span [class]="'customer-badge status-' + customer.status">{{customer.status}}</span> <span [class]="'customer-badge status-' + customer.status">{{customer.status}}</span>
</td> </td>
<td style="width:200px">{{customer.activity}}</td> <td style="width:200px">{{customer.activity}}</td>
<td style="width:200px">{{customer.representative.name}}</td> <td style="width:200px">
<img [alt]="customer.representative.name" src="assets/demo/images/avatar/{{customer.representative.image}}" width="32" style="vertical-align: middle"/>
<span class="image-text ml-2">{{customer.representative.name}}</span>
</td>
<td style="width:200px" pFrozenColumn alignFrozen="right">{{formatCurrency(customer.balance)}}</td> <td style="width:200px" pFrozenColumn alignFrozen="right">{{formatCurrency(customer.balance)}}</td>
</tr> </tr>
</ng-template> </ng-template>