Hi,
if I use anchor_css for menu item, then in class is added "nav_link" without space (in file default-url.php or default-component.j3.php)
// T4: add class nav-link
if ($item->anchor_css)
{
if(($item->level > 1)) {
$attributes['class'] = $item->anchor_css . ' dropdown-item';
} else {
$attributes['class'] = $item->anchor_css . 'nav-link';
}
}else{
if(($item->level > 1)) {
$attributes['class'] = ' dropdown-item';
} else {
$attributes['class'] = 'nav-link';
}
}
Next class for menu item is combine with my class and nav-link without space and not function.
Wrong: my-classnav-link
Right (after fix bug): my-class nav-link
Of course I can add space to my class for anchor, but is not systemically correct.
Can you pls fix this bug?