Merge pull request #4464 from Budibase/fix/button-actions-ui

Remount button action components fully
This commit is contained in:
Andrew Kingston 2022-02-14 09:26:11 +00:00 committed by GitHub
commit f2ce1990a1
1 changed files with 9 additions and 7 deletions

View File

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