From c8ecf41b1075b27b7802475ba53cb422549b7673 Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 2 Feb 2025 01:54:15 +0600 Subject: [PATCH] web/ProcessingQueueItem: fix stray space on error --- web/src/components/queue/ProcessingQueueItem.svelte | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/components/queue/ProcessingQueueItem.svelte b/web/src/components/queue/ProcessingQueueItem.svelte index 30881930..1b1381b1 100644 --- a/web/src/components/queue/ProcessingQueueItem.svelte +++ b/web/src/components/queue/ProcessingQueueItem.svelte @@ -69,6 +69,10 @@ {formatFileSize(info.resultFile?.file?.size)} {/if} + {#if info.state === "error"} + {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"} - {info.errorCode} - {/if} - {#if info.state === "waiting"} {$t("queue.state.waiting")} {/if}