Fix 'App settings' label visible in sidebar on mobile UI (#1888)
This commit is contained in:
parent
f359b15303
commit
34ba7612d1
|
@ -34,7 +34,7 @@ const ColumnLink = ({ icon, text, to, onClick, href, method, badge, transparent,
|
||||||
return (
|
return (
|
||||||
<a href='#' onClick={onClick && handleOnClick} className={className} title={text} {...other} tabIndex='0'>
|
<a href='#' onClick={onClick && handleOnClick} className={className} title={text} {...other} tabIndex='0'>
|
||||||
{iconElement}
|
{iconElement}
|
||||||
{text}
|
<span>{text}</span>
|
||||||
{badgeElement}
|
{badgeElement}
|
||||||
</a>
|
</a>
|
||||||
);
|
);
|
||||||
|
|
Reference in New Issue