mirror of
https://github.com/wukko/cobalt.git
synced 2025-02-15 15:26: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)}
|
<IconCheck /> {formatFileSize(info.resultFile?.file?.size)}
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
{#if info.state === "error"}
|
||||||
|
<IconExclamationCircle /> {info.errorCode}
|
||||||
|
{/if}
|
||||||
|
|
||||||
{#if info.state === "running"}
|
{#if info.state === "running"}
|
||||||
{#if info.pipeline.length > 1}
|
{#if info.pipeline.length > 1}
|
||||||
{(info.completedWorkers?.length || 0) + 1}/{info.pipeline.length}
|
{(info.completedWorkers?.length || 0) + 1}/{info.pipeline.length}
|
||||||
|
@ -84,10 +88,6 @@
|
||||||
{/if}
|
{/if}
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if info.state === "error"}
|
|
||||||
<IconExclamationCircle /> {info.errorCode}
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
{#if info.state === "waiting"}
|
{#if info.state === "waiting"}
|
||||||
{$t("queue.state.waiting")}
|
{$t("queue.state.waiting")}
|
||||||
{/if}
|
{/if}
|
||||||
|
|
Loading…
Reference in a new issue