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.
1 parent e965725 commit f3f6d79Copy full SHA for f3f6d79
app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php
@@ -392,7 +392,7 @@ protected function _getNodeJson($node, $level = 0)
392
$item['id'] = $node->getId();
393
$item['store'] = (int)$this->getStore()->getId();
394
$item['path'] = $node->getData('path');
395
- if(!$node->getIsActive()){
+ if (!$node->getIsActive()) {
396
$item['a_attr'] = ['class' => 'disabled-category'];
397
}
398
$item['cls'] = 'folder ' . ($node->getIsActive() ? 'active-category' : 'no-active-category');
0 commit comments