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 />
|
<OverlayProvider />
|
||||||
|
|
||||||
<div class="flex-container">
|
<div class="flex-container">
|
||||||
{#if $showSidebar || $selectedChannel.id === -1}
|
{#if !($smallViewport && $showPresenceSidebar) && $showSidebar || $selectedChannel.id === -1}
|
||||||
<Sidebar />
|
<Sidebar />
|
||||||
{/if}
|
{/if}
|
||||||
{#if !($smallViewport && $showSidebar) && !($smallViewport && $showPresenceSidebar) && $showChannelView && $selectedChannel.id !== -1}
|
{#if !($smallViewport && $showSidebar) && !($smallViewport && $showPresenceSidebar) && $showChannelView && $selectedChannel.id !== -1}
|
||||||
|
|
Loading…
Reference in a new issue