From 38b589c88ee84b37a286607110498bc122266a2d Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Tue, 9 Dec 2025 02:46:38 -0800 Subject: [PATCH] nit --- .../queue/QueueInlineProgressSummary.vue | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/components/queue/QueueInlineProgressSummary.vue b/src/components/queue/QueueInlineProgressSummary.vue index a81ede9e1..fe9c12e4d 100644 --- a/src/components/queue/QueueInlineProgressSummary.vue +++ b/src/components/queue/QueueInlineProgressSummary.vue @@ -5,7 +5,9 @@ aria-hidden="true" >
- {{ totalLabel }}: + + {{ t('sideToolbar.queueProgressOverlay.inlineTotalLabel') }}: + {{ totalPercentFormatted }} @@ -14,9 +16,9 @@
- {{ currentNodeLabel }}: + {{ currentNodeName }}: {{ currentNodePercentFormatted }} @@ -48,12 +50,6 @@ const { currentNodePercentFormatted } = useQueueProgress() -const totalLabel = computed(() => - t('sideToolbar.queueProgressOverlay.inlineTotalLabel') -) - -const currentNodeLabel = computed(() => currentNodeName.value) - const shouldShow = computed( () => !props.hidden &&