web/ProcessingQueueItem: fix stray space on error

This commit is contained in:
wukko 2025-02-02 01:54:15 +06:00
parent 945f87d93b
commit c8ecf41b10
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -69,6 +69,10 @@
<IconCheck /> {formatFileSize(info.resultFile?.file?.size)}
{/if}
{#if info.state === "error"}
<IconExclamationCircle /> {info.errorCode}
{/if}
{#if info.state === "running"}
{#if info.pipeline.length > 1}
{(info.completedWorkers?.length || 0) + 1}/{info.pipeline.length}
@ -84,10 +88,6 @@
{/if}
{/if}
{#if info.state === "error"}
<IconExclamationCircle /> {info.errorCode}
{/if}
{#if info.state === "waiting"}
{$t("queue.state.waiting")}
{/if}