diff --git a/src/components/TopMenuSection.vue b/src/components/TopMenuSection.vue
index a91d5e848f..2b94d5d509 100644
--- a/src/components/TopMenuSection.vue
+++ b/src/components/TopMenuSection.vue
@@ -127,13 +127,15 @@
-
+
{
}
return progressTarget.value
})
+const shouldHideInlineProgressSummary = computed(
+ () => isQueueProgressOverlayEnabled.value && isQueueOverlayExpanded.value
+)
const queueHistoryTooltipConfig = computed(() =>
buildTooltipConfig(t('sideToolbar.queueProgressOverlay.viewJobHistory'))
)
diff --git a/src/components/actionbar/ComfyActionbar.vue b/src/components/actionbar/ComfyActionbar.vue
index 11435bd7ec..652e3cf171 100644
--- a/src/components/actionbar/ComfyActionbar.vue
+++ b/src/components/actionbar/ComfyActionbar.vue
@@ -47,7 +47,7 @@
@@ -287,6 +287,9 @@ const inlineProgressTarget = computed(() => {
if (isDocked.value) return topMenuContainer ?? null
return panelElement.value
})
+const shouldHideInlineProgress = computed(
+ () => !isQueuePanelV2Enabled.value && queueOverlayExpanded
+)
watch(
panelElement,
(target) => {