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 18 | 1x | <ng-container *ngFor="let item of lineItems$ | async; trackBy: trackByFn"> <div class="row" *ngIf="item[0] !== 'undefined'"> <h2 class="col-12"> {{ 'quote.basket_items.label' | translate : { '0': getName(item[0]) | async } }} <button type="button" class="float-md-right pt-2 d-block d-md-inline header-note btn btn-link btn-link-action" title="{{ 'quote.basket_items.remove.button.label' | translate }}" (click)="onDeleteQuote(item[0])" > <fa-icon [icon]="['fas', 'trash-alt']" /> <span class="pl-1">{{ 'quote.basket_items.remove.button.label' | translate }}</span> </button> </h2> </div> <ish-line-item-list [lineItems]="item[1]" /> </ng-container> |