1
0
Fork 0
mirror of synced 2024-09-30 00:57:16 +13:00

Remount button action components fully when changing action to prevent stale UI

This commit is contained in:
Andrew Kingston 2022-02-13 15:18:54 +00:00
parent 3f46eb4fd0
commit c7edfa7f59

View file

@ -126,13 +126,15 @@
</Layout> </Layout>
<Layout noPadding> <Layout noPadding>
{#if selectedActionComponent} {#if selectedActionComponent}
<div class="selected-action-container"> {#key selectedAction.id}
<svelte:component <div class="selected-action-container">
this={selectedActionComponent} <svelte:component
parameters={selectedAction.parameters} this={selectedActionComponent}
bindings={allBindings} parameters={selectedAction.parameters}
/> bindings={allBindings}
</div> />
</div>
{/key}
{/if} {/if}
</Layout> </Layout>
</DrawerContent> </DrawerContent>