Skip to content

Commit f2c1bc8

Browse files
author
Stanislav Idolov
authored
ENGCOM-2636: Resolved special character issue for sidebar #17070
2 parents 604c7f8 + 365984c commit f2c1bc8

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)