Skip to content

Commit ed49061

Browse files
committed
Fix unable to add new inboxes
sveltejs/svelte#6037 (comment)
1 parent d019908 commit ed49061

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/settings-tab/SettingsTab.svelte

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@
3434
<Button on:click={addInbox}><Icon name="plus" /></Button>
3535
</div>
3636

37-
{#each $store.inboxes as inbox, index}
38-
<InboxSettings {inbox} {index} {app} {markdownFiles} {folders} />
39-
{/each}
37+
<div>
38+
{#each $store.inboxes as inbox, index}
39+
<InboxSettings {inbox} {index} {app} {markdownFiles} {folders} />
40+
{/each}
41+
</div>
4042

4143
<style>
4244
.inbox-setting-heading-with-button {

0 commit comments

Comments
 (0)