Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1x | <ng-container *ngFor="let item of lineItems$ | async; trackBy: trackByFn"> <div class="d-flex align-items-center justify-content-between flex-wrap" *ngIf="item[0] !== 'undefined'"> <h2> {{ 'quote.basket_items.label' | translate : { '0': getName(item[0]) | async } }} </h2> <button type="button" class="float-md-right px-2 mx-1 d-block d-md-inline btn btn-link btn-link-action" title="{{ 'quote.basket_items.remove.button.label' | translate }}" (click)="onDeleteQuote(item[0])" > {{ 'quote.basket_items.remove.button.label' | translate }} </button> </div> <ish-line-item-list [lineItems]="item[1]" /> </ng-container> |