don't show presence sidebar if sidebar is present
This commit is contained in:
parent
e31d8c5973
commit
9a8b769e95
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@
|
|||
<OverlayProvider />
|
||||
|
||||
<div class="flex-container">
|
||||
{#if $showSidebar || $selectedChannel.id === -1}
|
||||
{#if !($smallViewport && $showPresenceSidebar) && $showSidebar || $selectedChannel.id === -1}
|
||||
<Sidebar />
|
||||
{/if}
|
||||
{#if !($smallViewport && $showSidebar) && !($smallViewport && $showPresenceSidebar) && $showChannelView && $selectedChannel.id !== -1}
|
||||
|
|
Loading…
Reference in a new issue