diff --git a/CHANGELOG.md b/CHANGELOG.md index c05a59beca..e74c48430f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Draft +- Fix shipment info showing for cancelled orders [#2654](https://github.com/bigcommerce/cornerstone/pull/2654) ## 6.19.1 (04-09-2026) - Update stencil-utils versionto 6.23.0 [#2638](https://github.com/bigcommerce/cornerstone/pull/2638) diff --git a/templates/components/account/order-contents.html b/templates/components/account/order-contents.html index 7f7cc345d9..411e9e0e4b 100644 --- a/templates/components/account/order-contents.html +++ b/templates/components/account/order-contents.html @@ -2,14 +2,16 @@

{{lang 'account.orders.details.order_contents'}}

{{#each order.items}} - {{#if shipping_rows.length}} - {{#each shipping_rows}} - {{#if is_shipping}} -
  • -
    {{lang 'account.orders.details.ship_to_multi' street=address city=city state=state zip=zip country=country}}
    -
  • - {{/if}} - {{/each}} + {{#if ../order.is_complete}} + {{#if shipping_rows.length}} + {{#each shipping_rows}} + {{#if is_shipping}} +
  • +
    {{lang 'account.orders.details.ship_to_multi' street=address city=city state=state zip=zip country=country}}
    +
  • + {{/if}} + {{/each}} + {{/if}} {{/if}}