Skip to content

Commit 813219a

Browse files
committed
MAGETWO-92931: HTML entities in product name do not display properly in breadcrumb
- modify underscore template to evaluate html entities
1 parent 94c7b9e commit 813219a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Theme/view/frontend/web/templates/breadcrumbs.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<% if (crumb.link) { %>
1111
<a href="<%= crumb.link %>" title="<%- crumb.title %>"><%- crumb.label %></a>
1212
<% } else if (crumb.last) { %>
13-
<strong><%- crumb.label %></strong>
13+
<strong><%= crumb.label %></strong>
1414
<% } else { %>
15-
<%- crumb.label %>
15+
<%= crumb.label %>
1616
<% } %>
1717
</li>
1818
<% }); %>

0 commit comments

Comments
 (0)