Skip to content

Commit b0a971c

Browse files
cia-2.4.7-beta1-develop-bugfixes-02162023
Merge branch 'AC-7668' into cia-2.4.7-beta1-develop-bugfixes-02162023
2 parents 2ada15f + e97d90c commit b0a971c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/code/Magento/Catalog/view/adminhtml/web/js/category-tree.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55

66
define([
77
'jquery',
8-
'mageUtils',
98
'jquery/ui',
109
'jquery/jstree/jquery.jstree'
11-
], function ($, utils) {
10+
], function ($) {
1211
'use strict';
1312

1413
$.widget('mage.categoryTree', {
@@ -87,7 +86,7 @@ define([
8786
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
8887
result = {
8988
id: node.id,
90-
text: utils.unescape(node.name) + ' (' + node.product_count + ')',
89+
text: node.name + ' (' + node.product_count + ')',
9190
li_attr: {
9291
class: node.cls + (!!node.disabled ? ' disabled' : '') //eslint-disable-line no-extra-boolean-cast
9392
},

0 commit comments

Comments
 (0)