Skip to content

Commit 6e6ab39

Browse files
Typo fix #123
1 parent 3dd7fae commit 6e6ab39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/components/File/FileUploader.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@
182182
>
183183
<p>
184184
{#if model.accept}
185-
{#each model.accept as ext}
186-
{ext} ,
185+
{#each model.accept as ext, i}
186+
{ext}{#if i < model.accept.length - 1}, {/if}
187187
{/each}
188188
{/if}
189189
</p>

0 commit comments

Comments
 (0)