All files / src/app/extensions/quoting/shared/quoting-basket-line-items quoting-basket-line-items.component.html

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

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 191x                                    
@for (item of lineItems$ | async; track item[0]) {
  @if (item[0] !== 'undefined') {
    <div class="d-flex align-items-center justify-content-between flex-wrap">
      <h2>
        {{ 'quote.basket_items.label' | translate: { '0': getName(item[0]) | async } }}
      </h2>
      <button
        class="float-md-end px-2 mx-1 d-block d-md-inline btn btn-link btn-link-action"
        type="button"
        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]" />
}