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 | 1x | <div class="container line-item-edit-dialog">
<ish-loading *ngIf="loading$ | async" />
<div *ngIf="variation$ | async as variation" class="row">
<!-- right box -->
<div class="col-12 col-md">
<div class="text-center"><ish-product-image imageType="M" /></div>
</div>
<!-- left box -->
<div class="col-12 col-md product-info">
<!-- sku -->
<ish-product-id />
<!-- price -->
<div class="current-price">{{ variationSalePrice$ | async | ishPrice }}</div>
<!-- Availability -->
<ish-product-inventory />
<!-- select (variation) -->
<div class="product-variation-container">
<ish-product-variation-select />
</div>
<!-- input (quantity) -->
<div class="form-group">
<div class="row">
<ish-product-quantity-label for="line-item-edit-quantity" class="col" />
<div class="col">
<ish-product-quantity elementId="line-item-edit-quantity" />
</div>
</div>
</div>
</div>
</div>
</div>
|