diff --git a/src/components/TopMenuSection.vue b/src/components/TopMenuSection.vue
index d9832c7aa..9197a7f67 100644
--- a/src/components/TopMenuSection.vue
+++ b/src/components/TopMenuSection.vue
@@ -59,20 +59,7 @@
>
-
+
const cancelJobTooltipConfig = computed(() =>
buildTooltipConfig(t('menu.interrupt'))
)
-const { totalPercent, currentNodePercent } = useQueueProgress()
-const showInlineProgress = computed(
- () =>
- !isQueueOverlayExpanded.value &&
- (totalPercent.value > 0 || currentNodePercent.value > 0)
-)
// Right side panel toggle
const { isOpen: isRightSidePanelOpen } = storeToRefs(rightSidePanelStore)
diff --git a/src/components/queue/QueueInlineProgress.vue b/src/components/queue/QueueInlineProgress.vue
new file mode 100644
index 000000000..2cb7e3176
--- /dev/null
+++ b/src/components/queue/QueueInlineProgress.vue
@@ -0,0 +1,33 @@
+
+
+
+
+