Skip to content

Commit

Permalink
fix(storefront): BCTHEME-1903 Viewing Orders after logging into custo…
Browse files Browse the repository at this point in the history
…mer account displays incorrect quantity of products ordered compared to Order details page (#2482)

Co-authored-by: Vlad Dlogush <31504758+VladDlogush@users.noreply.github.com>
  • Loading branch information
bc-vlad-dlogush and VladDlogush authored Sep 24, 2024
1 parent 3eb0cd2 commit 15e23e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
- Viewing Orders after logging into customer account displays incorrect quantity of products ordered compared to Order details page. [#2482](https://github.com/bigcommerce/cornerstone/pull/2482)
- High severity security issue [#2477](https://github.com/bigcommerce/cornerstone/pull/2477)
- Date Field Modifier - February showing 30th and 31st [#2473](https://github.com/bigcommerce/cornerstone/pull/2473)
- Adding mobile nav dropdown focusTrap [#2465](https://github.com/bigcommerce/cornerstone/pull/2465)
Expand Down
2 changes: 1 addition & 1 deletion templates/components/account/orders-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h6 class="account-orderStatus-label">{{this.status}}</h6>
<h5 class="account-product-title">
<a href="{{this.details_url}}">{{lang 'account.orders.list.order_number' number=this.id}}</a>
</h5>
<p class="account-product-description">{{lang 'account.orders.list.product_details' num_products=this.items.length cost=this.total.formatted}}</p>
<p class="account-product-description">{{lang 'account.orders.list.product_details' num_products=this.total_quantity cost=this.total.formatted}}</p>

<div class="account-product-details">
<div class="account-product-detail">
Expand Down

0 comments on commit 15e23e3

Please sign in to comment.