We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 44502ff + b7179ad commit a49e16dCopy full SHA for a49e16d
app/code/Magento/Catalog/view/adminhtml/web/js/category-checkbox-tree.js
@@ -168,7 +168,7 @@ define([
168
}
169
170
if (parent && config && config.length) {
171
- for (i = 0; i < config.length; i++) {
+ for (var i = 0; i < config.length; i++) {
172
categoryLoader.processCategoryTree(parent, config, i);
173
174
@@ -185,7 +185,7 @@ define([
185
if ((node.childNodes.length > 0) || (node.loaded === false && node.loading === false)) {
186
hash.children = [];
187
188
- for (i = 0, len = node.childNodes.length; i < len; i++) {
+ for (var i = 0, len = node.childNodes.length; i < len; i++) {
189
/* eslint-disable */
190
if (!hash.children) {
191
0 commit comments