Skip to content

Commit 9192aed

Browse files
committed
Merge remote-tracking branch 'origin/MAGETWO-97839' into 2.1.17-develop-pr62
2 parents 85c6f09 + f838d64 commit 9192aed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/dynamic-rows-configurable.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ define([
218218

219219
_.each(tmpData, function (row, index) {
220220
path = this.dataScope + '.' + this.index + '.' + (this.startIndex + index);
221-
row.attributes = $('<i></i>').text(row.attributes).text();
222-
row.sku = $('<i></i>').text(row.sku).text();
221+
row.attributes = $('<i></i>').text(row.attributes).html();
222+
row.sku = $('<i></i>').text(row.sku).html();
223223
this.source.set(path, row);
224224
}, this);
225225

@@ -379,8 +379,8 @@ define([
379379
product = {
380380
'id': row.productId,
381381
'product_link': row.productUrl,
382-
'name': $('<i></i>').text(row.name).text(),
383-
'sku': $('<i></i>').text(row.sku).text(),
382+
'name': $('<i></i>').text(row.name).html(),
383+
'sku': $('<i></i>').text(row.sku).html(),
384384
'status': row.status,
385385
'price': row.price,
386386
'price_currency': row.priceCurrency,

0 commit comments

Comments
 (0)