1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Ensure transitions are only local to avoid weird svelte issues

This commit is contained in:
Andrew Kingston 2021-09-29 15:26:01 +01:00
parent ce011dc4df
commit 7e01602227

View file

@ -105,7 +105,7 @@
<Heading size="S">{title}</Heading>
{/if}
{#if loading}
<div transition:fade>
<div transition:fade|local>
<Spinner size="10" />
</div>
{/if}