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 &&