From bf94e64ee533b9f119ac2fc18a1284bfae9cd881 Mon Sep 17 00:00:00 2001 From: mfaris9 Date: Wed, 6 May 2026 15:30:51 -0400 Subject: [PATCH 1/2] fix(storefront): LTRAC-648 fix shipment info showing for cancelled orders --- .../components/account/order-contents.html | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) 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}} -
  • - -
  • - {{/if}} - {{/each}} + {{#if ../order.is_complete}} + {{#if shipping_rows.length}} + {{#each shipping_rows}} + {{#if is_shipping}} +
  • + +
  • + {{/if}} + {{/each}} + {{/if}} {{/if}}