diff --git a/src/components/TopMenuSection.vue b/src/components/TopMenuSection.vue
index 9b18c8dcc..d9832c7aa 100644
--- a/src/components/TopMenuSection.vue
+++ b/src/components/TopMenuSection.vue
@@ -11,7 +11,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)