Skip to content

Commit

Permalink
fix(storefront)L: BCTHEME-1366 Customer order summary with both physi…
Browse files Browse the repository at this point in the history
…cal and digital items shows shipping as null
  • Loading branch information
“bc-yevhenii-buliuk” committed Jan 19, 2023
1 parent 5f023e5 commit 19c7993
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed non-working functionality from schema.json [#2301][https://github.com/bigcommerce/cornerstone/pull/2301]
- Refactored `hide_price_from_guests` logic around `show_cart_action` use [#2304](https://github.com/bigcommerce/cornerstone/pull/2304)
- Removed all Google AMP template files [#2308](https://github.com/bigcommerce/cornerstone/pull/2308)
- Customer order summary with both physical and digital items shows shipping as null [#2309](https://github.com/bigcommerce/cornerstone/pull/2309)

## 6.7.0 (11-03-2022)
- Fixed escaping on created store account confirm message. [#2265]https://github.com/bigcommerce/cornerstone/pull/2265
Expand Down
8 changes: 5 additions & 3 deletions templates/components/account/order-contents.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ <h3 class="account-heading">{{lang 'account.orders.details.order_contents'}}</h3
{{#each order.items}}
{{#if shipping_rows.length}}
{{#each shipping_rows}}
<li class="account-listShipping">
<h5 class="account-listShipping-title">{{lang 'account.orders.details.ship_to_multi' street=address city=city state=state zip=zip country=country}}</h5>
</li>
{{#if is_shipping}}
<li class="account-listShipping">
<h5 class="account-listShipping-title">{{lang 'account.orders.details.ship_to_multi' street=address city=city state=state zip=zip country=country}}</h5>
</li>
{{/if}}
{{/each}}
{{/if}}
<li class="account-listItem">
Expand Down

0 comments on commit 19c7993

Please sign in to comment.