From bf044b743e69cbb4a61d0d1a8797a3e58a600f8b Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Fri, 19 Sep 2025 09:15:25 +0800 Subject: [PATCH] [backport 1.26] fix: don't immediately close missing nodes dialog if manager is disabled (#5648) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #5647 to `core/1.26` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-5648-backport-1-26-fix-don-t-immediately-close-missing-nodes-dialog-if-manager-is-disabled-2736d73d3650815dba5ac53f6d4578b5) by [Unito](https://www.unito.io) Co-authored-by: Christian Byrne --- src/components/dialog/content/LoadWorkflowWarning.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dialog/content/LoadWorkflowWarning.vue b/src/components/dialog/content/LoadWorkflowWarning.vue index cc159292a..6f04a937c 100644 --- a/src/components/dialog/content/LoadWorkflowWarning.vue +++ b/src/components/dialog/content/LoadWorkflowWarning.vue @@ -138,7 +138,7 @@ const allMissingNodesInstalled = computed(() => { }) // Watch for completion and close dialog watch(allMissingNodesInstalled, async (allInstalled) => { - if (allInstalled) { + if (allInstalled && showInstallAllButton.value) { // Use nextTick to ensure state updates are complete await nextTick()