Skip to content

Commit

Permalink
Fix issue product name render wrong with special characters
Browse files Browse the repository at this point in the history
update


update
  • Loading branch information
Tu Nguyen committed Aug 28, 2020
1 parent d1ff2ca commit 32b520c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
<div class="product-item-details">
<strong class="product-item-name">
<!-- ko if: product_has_url -->
<a data-bind="attr: {href: product_url}, html: product_name"></a>
<a data-bind="attr: {href: product_url}, html: product_name"></a>
<!-- /ko -->
<!-- ko ifnot: product_has_url -->
<!-- ko text: product_name --><!-- /ko -->
<span data-bind="html: product_name"></span>
<!-- /ko -->
</strong>

Expand Down

0 comments on commit 32b520c

Please sign in to comment.