1
0
Fork 0
mirror of synced 2024-06-26 10:00:41 +12:00

Fix spacing for custom datasources in new datasource modal

This commit is contained in:
Andrew Kingston 2022-09-07 12:40:32 +01:00
parent f9a604e704
commit 142c277fab

View file

@ -166,7 +166,10 @@
/>
{/each}
</div>
{#if customIntegrations.length > 0}
</Layout>
{#if customIntegrations.length > 0}
<Layout noPadding gap="XS">
<Body size="S">Custom data source</Body>
<div class="item-list">
{#each customIntegrations as [integrationType, schema]}
@ -178,8 +181,8 @@
/>
{/each}
</div>
{/if}
</Layout>
</Layout>
{/if}
</ModalContent>
</Modal>