Fix bug where stale data is shown in custom css drawer when changing components

This commit is contained in:
Andrew Kingston 2021-06-30 09:38:14 +01:00
parent 0f3b447896
commit 1b8e6d029f
1 changed files with 13 additions and 11 deletions

View File

@ -35,7 +35,8 @@
<ActionButton on:click={openDrawer}>Edit custom CSS</ActionButton> <ActionButton on:click={openDrawer}>Edit custom CSS</ActionButton>
</div> </div>
</DetailSummary> </DetailSummary>
<Drawer bind:this={drawer} title="Custom CSS"> {#key componentInstance?._id}
<Drawer bind:this={drawer} title="Custom CSS">
<Button cta slot="buttons" on:click={save}>Save</Button> <Button cta slot="buttons" on:click={save}>Save</Button>
<DrawerContent slot="body"> <DrawerContent slot="body">
<div class="content"> <div class="content">
@ -45,7 +46,8 @@
</Layout> </Layout>
</div> </div>
</DrawerContent> </DrawerContent>
</Drawer> </Drawer>
{/key}
<style> <style>
.content { .content {