Skip to content

Commit c240057

Browse files
ENGCOM-2695: [Forwardport] Resolved special character issue for sidebar #17421
- Merge Pull Request #17421 from mage2pratik/magento2:2.3-develop-PR-port-17070 - Merged commits: 1. 6a3500b 2. 5659fd0
2 parents 0e2bca6 + 5659fd0 commit c240057

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/Checkout/view/frontend/web/template/summary/item/details.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<div class="product-item-inner">
1414
<div class="product-item-name-block">
15-
<strong class="product-item-name" data-bind="text: $parent.name"></strong>
15+
<strong class="product-item-name" data-bind="html: $parent.name"></strong>
1616
<div class="details-qty">
1717
<span class="label"><!-- ko i18n: 'Qty' --><!-- /ko --></span>
1818
<span class="value" data-bind="text: $parent.qty"></span>

app/code/Magento/Wishlist/view/frontend/templates/sidebar.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $wishlistHelper = $this->helper('Magento\Wishlist\Helper\Data');
3131
<div class="product-item-details">
3232
<strong class="product-item-name">
3333
<a data-bind="attr: { href: product_url }" class="product-item-link">
34-
<span data-bind="text: product_name"></span>
34+
<span data-bind="html: product_name"></span>
3535
</a>
3636
</strong>
3737
<div data-bind="html: product_price"></div>

0 commit comments

Comments
 (0)