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 | 3x | <div class="address-summary">
<!-- Invoice Address -->
<div class="clearfix">
<a
class="float-end btn-tool"
routerLink="/checkout/address"
[title]="'checkout.address.update.title' | translate : { '0': 'checkout.address.billing.label' | translate }"
>
<fa-icon [icon]="['fas', 'pencil-alt']" />
</a>
<h3 class="h5 float-start">{{ 'checkout.address.billing.label' | translate }}</h3>
</div>
<div data-testing-id="address-summary-invoice-to-address">
<ish-address [address]="basket.invoiceToAddress" [displayEmail]="true" />
</div>
<!-- Shipping Address -->
<div class="clearfix">
<a
class="float-end btn-tool"
routerLink="/checkout/address"
[title]="'checkout.address.update.title' | translate : { '0': 'checkout.address.shipping.label' | translate }"
>
<fa-icon [icon]="['fas', 'pencil-alt']" />
</a>
<h3 class="h5">{{ 'checkout.address.shipping.label' | translate }}</h3>
</div>
<div data-testing-id="address-summary-ship-to-address">
<address *ngIf="basket.invoiceToAddress.id === basket.commonShipToAddress?.id; else shippingAddress">
{{ 'checkout.same_as_billing_address.text' | translate }}
</address>
<ng-template #shippingAddress> <ish-address [address]="basket.commonShipToAddress" /> </ng-template>
</div>
</div>
|