All files / src/app/shared/components/line-item/line-item-edit line-item-edit.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 241x                                              
@if (product$ | async; as product) {
  @if (product.type === 'VariationProduct') {
    <button
      class="line-item-edit-link btn btn-link btn-link-action"
      type="button"
      title="{{ 'checkout.variation.edit.button.label' | translate }}"
      (click)="show()"
    >
      {{ 'checkout.variation.edit.button.label' | translate }}
    </button>
  }
  <ish-modal-dialog
    #modalDialog
    [options]="{
      titleText: product.name,
      confirmText: 'shopping_cart.variation.save.button.label' | translate,
      rejectText: 'shopping_cart.button.cancel' | translate,
      size: 'lg',
    }"
  >
    <ish-line-item-edit-dialog />
  </ish-modal-dialog>
}