diff --git a/CHANGELOG.md b/CHANGELOG.md index cae441a18e..8e757ce2ec 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 +- 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) diff --git a/templates/components/account/orders-list.html b/templates/components/account/orders-list.html index 71193a0c65..0304d37c86 100644 --- a/templates/components/account/orders-list.html +++ b/templates/components/account/orders-list.html @@ -35,7 +35,7 @@
{{this.status}}
{{lang 'account.orders.list.order_number' number=this.id}}
-

{{lang 'account.orders.list.product_details' num_products=this.items.length cost=this.total.formatted}}

+

{{lang 'account.orders.list.product_details' num_products=this.items.[0].quantity cost=this.total.formatted}}