Skip to content

Commit

Permalink
Workspace logo is not visible (#9174)
Browse files Browse the repository at this point in the history
Fixing "Workspace logo is not visible in the navbar" report issue from
@Weiko
  • Loading branch information
guillim authored Dec 20, 2024
1 parent 8f3fbec commit c992be1
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,15 @@ export const NavigationDrawer = ({
onMouseEnter={handleHover}
onMouseLeave={handleMouseLeave}
>
{isSettingsDrawer && title
? !isMobile && <NavigationDrawerBackButton title={title} />
: logo && (
<NavigationDrawerHeader
name={title}
logo={logo}
showCollapseButton={isHovered}
/>
)}
{isSettingsDrawer && title ? (
!isMobile && <NavigationDrawerBackButton title={title} />
) : (
<NavigationDrawerHeader
name={title}
logo={logo || ''}
showCollapseButton={isHovered}
/>
)}
<StyledItemsContainer isSettings={isSettingsDrawer}>
{children}
</StyledItemsContainer>
Expand Down

0 comments on commit c992be1

Please sign in to comment.