Skip to content

Commit

Permalink
CC-30665 Fixed order item count on order detail page.
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-png committed Aug 4, 2023
1 parent f80ff6d commit e30a178
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<h6 class="{{ config.name }}__title">{{ 'customer.order.overview' | trans }}</h6>
</div>
<div class="col col--expand text-right">
<span class="{{ config.name }}__label">{{ cartQuantity | executeFilterIfExists('formatInt', app.locale) }} {{ 'customer.order.summary.items' | trans }}</span>
<span class="{{ config.name }}__label">{{ data.order.items | length | executeFilterIfExists('formatInt', app.locale) }} {{ 'customer.order.summary.items' | trans }}</span>
</div>
</div>

Expand Down

0 comments on commit e30a178

Please sign in to comment.