mirror of
https://github.com/wukko/cobalt.git
synced 2025-02-08 19:56:34 +01:00
web/ProcessingQueueItem: fix stray space on error
This commit is contained in:
parent
945f87d93b
commit
c8ecf41b10
1 changed files with 4 additions and 4 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue