Workspace logo is not visible (#9174)

Fixing "Workspace logo is not visible in the navbar" report issue from
@Weiko
This commit is contained in:
Guillim
2024-12-20 18:15:02 +01:00
committed by GitHub
parent 8f3fbeccb1
commit c992be1694

View File

@ -111,12 +111,12 @@ export const NavigationDrawer = ({
onMouseEnter={handleHover}
onMouseLeave={handleMouseLeave}
>
{isSettingsDrawer && title
? !isMobile && <NavigationDrawerBackButton title={title} />
: logo && (
{isSettingsDrawer && title ? (
!isMobile && <NavigationDrawerBackButton title={title} />
) : (
<NavigationDrawerHeader
name={title}
logo={logo}
logo={logo || ''}
showCollapseButton={isHovered}
/>
)}