1
0
Fork 0
mirror of synced 2024-10-05 12:34:50 +13:00

Merge pull request #11906 from Budibase/hide-portal-sidebar-when-no-apps

Hide Portal Sidebar When the User Has No Apps
This commit is contained in:
Andrew Kingston 2023-09-28 11:28:38 +01:00 committed by GitHub
commit c495f88a75

View file

@ -46,7 +46,9 @@
{#if loaded}
<div class="page">
<PortalSideBar />
{#if $apps.length > 0}
<PortalSideBar />
{/if}
<slot />
</div>
{/if}