diff options
author | prplecake <me@prplecake.com> | 2022-11-05 02:12:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 08:12:04 +0100 |
commit | 34ba7612d11958217e373f03c5dccf618c9f4284 (patch) | |
tree | c8c151d2cb67c20da837d51f2a177ab1d6e126ff | |
parent | f359b15303e243b94c6923f789c5ae80330d5320 (diff) |
Fix 'App settings' label visible in sidebar on mobile UI (#1888)
-rw-r--r-- | app/javascript/flavours/glitch/features/ui/components/column_link.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/ui/components/column_link.js b/app/javascript/flavours/glitch/features/ui/components/column_link.js index 4f04fdba2..bd1c20b47 100644 --- a/app/javascript/flavours/glitch/features/ui/components/column_link.js +++ b/app/javascript/flavours/glitch/features/ui/components/column_link.js @@ -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> ); |