Fix 'App settings' label visible in sidebar on mobile UI (#1888)

This commit is contained in:
prplecake 2022-11-05 02:12:04 -05:00 committed by GitHub
parent f359b15303
commit 34ba7612d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ const ColumnLink = ({ icon, text, to, onClick, href, method, badge, transparent,
return (
<a href='#' onClick={onClick && handleOnClick} className={className} title={text} {...other} tabIndex='0'>
{iconElement}
{text}
<span>{text}</span>
{badgeElement}
</a>
);