1
0
Fork 0
mirror of synced 2024-10-02 18:16:29 +13:00

adds a empty state for no components added in the repeater

This commit is contained in:
kevmodrome 2021-01-19 15:21:23 +01:00
parent d4b27f7bc4
commit 84450d0323
2 changed files with 6 additions and 2 deletions

View file

@ -29,7 +29,7 @@
$builderStore.previewType === "layout" || screenslotContext
// Update component context
$: componentStore.set({ id, styles: { ...styles, id, allowSelection } })
$: componentStore.set({ id, children: children.length, styles: { ...styles, id, allowSelection } })
// Gets the component constructor for the specified component
const getComponentConstructor = component => {

View file

@ -28,7 +28,11 @@
{#if rows.length > 0}
{#each rows as row}
<DataProvider {row}>
<slot />
{#if $component.children === 0}
<p>Add some components to.</p>
{:else}
<slot />
{/if}
</DataProvider>
{/each}
{:else}