fix(study): Svelte fragment 문법 제거 — <></> 대신 명시적 태그
This commit is contained in:
@@ -310,7 +310,12 @@
|
||||
<span class="text-[11px] text-dim">{images.length}건</span>
|
||||
</div>
|
||||
<label class="cursor-pointer text-xs text-accent hover:underline flex items-center gap-1">
|
||||
{#if imgUploading}<span>업로드 중...</span>{:else}<><ImagePlus size={14} /> 이미지 추가</>{/if}
|
||||
{#if imgUploading}
|
||||
<span>업로드 중...</span>
|
||||
{:else}
|
||||
<ImagePlus size={14} />
|
||||
<span>이미지 추가</span>
|
||||
{/if}
|
||||
<input type="file" accept="image/png,image/jpeg,image/webp,image/gif" multiple
|
||||
onchange={uploadImages} disabled={imgUploading} class="hidden" />
|
||||
</label>
|
||||
|
||||
Reference in New Issue
Block a user