All files / src/app/shared/components/basket/basket-validation-products basket-validation-products.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 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 392x                                                                            
<ng-container *ngFor="let item of items">
  <div *ngIf="item" class="alert alert-box" role="alert" data-testing-id="validation-removed-items-message">
    <div class="alert-box-header">
      {{ item.message }}
    </div>
    <div class="alert-box-body">
      <div class="row list-header d-md-flex">
        <div class="col-md-10 list-header-item">{{ 'checkout.pli.desc.heading' | translate }}</div>
        <div class="col-md-2 list-header-item column-price">{{ 'checkout.pli.price.heading' | translate }}</div>
      </div>
      <div class="list-body">
        <div class="list-item-row list-item-row-big">
          <div class="row clearfix" ishProductContext [sku]="item.productSKU">
            <!---Product Image --->
            <div class="col-2 list-item">
              <ish-product-image imageType="S" [link]="true" />
            </div>
            <!---Product Description --->
            <div class="col-7 col-md-6 list-item">
              <ish-product-name />
              <ish-product-id />
            </div>
 
            <!---Out of Stock --->
            <div class="col-2 offset-2 offset-md-0 order-last order-md-3 list-item">
              <ish-product-inventory />
            </div>
 
            <!---Product Price --->
            <div class="col-3 col-md-2 order-last list-item column-price">
              {{ item.price | ishPrice }}
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</ng-container>