{#if items.length > 0}
Upload-Warteschlange {#if $isProcessing}
{/if}
{#if hasCompleted}
clearCompleted()} class="text-xs text-gray-500 hover:text-gray-700" > Fertige entfernen
{/if}
{#each items as item (item.id)}
{item.fileName}
{formatSize(item.fileSize)}
{statusLabel(item.status)}
{#if item.status === 'error'}
retryItem(item.id)} class="rounded bg-red-100 px-2 py-0.5 text-xs text-red-700 hover:bg-red-200" > Erneut
{/if} {#if item.status === 'done' || item.status === 'error'}
removeItem(item.id)} class="text-gray-400 hover:text-gray-600" aria-label="Entfernen" >
{/if}
{#if item.status === 'uploading'}
{item.progress}%
{/if} {#if item.error}
{item.error}
{/if}
{/each}
{/if}