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 9fc6972 commit ad17bd9Copy full SHA for ad17bd9
app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php
@@ -407,6 +407,7 @@ protected function _getNodeJson($node, $level = 0)
407
public function buildNodeName($node)
408
{
409
$result = $this->escapeHtml($node->getName());
410
+ $result .= ' (ID: ' . $node->getId() . ')';
411
if ($this->_withProductCount) {
412
$result .= ' (' . $node->getProductCount() . ')';
413
}
0 commit comments