Skip to content

Commit

Permalink
Merge pull request #254 from spryker-shop/bugfix/cc-30665-fix-order-i…
Browse files Browse the repository at this point in the history
…tem-count-on-order-detail-page

CC-30665 Fixed order item count on order detail page.
  • Loading branch information
dmiseev authored Aug 9, 2023
2 parents f80ff6d + e30a178 commit 4a3cdcf
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 4a3cdcf

Please sign in to comment.