Skip to content

Commit

Permalink
fix: error
Browse files Browse the repository at this point in the history
Signed-off-by: Dafnik <[email protected]>
  • Loading branch information
Dafnik committed Feb 18, 2024
1 parent db5dd40 commit c84a1a5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,27 @@ import {DfxCurrencyCentPipe} from '../../_shared/pipes/currency.pipe';
<th *ngbHeaderCellDef ngb-header-cell ngb-sort-header>{{ 'HOME_PROD' | tr }}</th>
<td *ngbCellDef="let order" ngb-cell>
<div class="d-flex align-items-center gap-2">
<span class="badge rounded-pill text-bg-info" x</span>
<span class="badge rounded-pill text-bg-info">{{ order.amount }} x</span>
<a routerLink="../../products/{{ order.productId }}">
{{ order.name }}
</a>
</div>
</td>
<td *ngbFooterCellDef> ngb-footer-cellGesamt</td>
<td *ngbFooterCellDef ngb-footer-cell>Gesamt</td>
</ng-container>
<ng-container ngbColumnDef="pricePerPiece">
<th *ngbHeaderCellDef ngb-header-cell ngb-sort-header class="ws-nowrap">{{ 'PRICE_PER_PIECE' | tr }}</th>
<td *ngbCellDef="let order" ngb-cell>{{ order.pricePaidPerPiece | currency }}</td>
<td *ngbFooterCellDef> ngb-footer-cell</td>
<td *ngbFooterCellDef>ngb-footer-cell</td>
</ng-container>
<ng-container ngbColumnDef="priceSum">
<th *ngbHeaderCellDef ngb-header-cell ngb-sort-header>{{ 'PRICE' | tr }}</th>
<td *ngbCellDef="let order" ngb-cell>
{{ order.pricePaidSum | currency }}
</td>
<td *ngbFooterCellDef> ngb-footer-cell{{ priceSum | currency }}</td>
<td *ngbFooterCellDef>ngb-footer-cell{{ priceSum | currency }}</td>
</ng-container>
<tr *ngbHeaderRowDef="columnsToDisplay" ngb-header-row></tr>
Expand Down

0 comments on commit c84a1a5

Please sign in to comment.