1
0
Fork 0
mirror of synced 2024-08-19 03:51:29 +12:00

Fix side panel issue where content from multiple side panels would be shown

This commit is contained in:
Andrew Kingston 2022-12-06 15:21:17 +00:00
parent b03bf753a0
commit 74a8eba2fa

View file

@ -47,7 +47,10 @@
// Apply initial visibility
update(visible)
return { update }
return {
update,
destroy: () => update(false),
}
}
</script>
@ -57,7 +60,7 @@
class="side-panel"
class:open
>
{#if $sidePanelStore.open}
{#if open}
<slot />
{/if}
</div>