From 0dc66a4d6a336ecea4c015f1b5f10890602b3e8d Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Thu, 18 Sep 2025 17:54:37 -0700 Subject: [PATCH] fix: don't immediately close missing nodes dialog if manager is disabled (#5647) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If manager is disabled, it assumed all missing nodes are installed and immediately closes the missing nodes warning when loading a workflow with missing nodes. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-5647-fix-don-t-immediately-close-missing-nodes-dialog-if-manager-is-disabled-2736d73d36508199a50bca2026528ab6) by [Unito](https://www.unito.io) --- 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 2698f17e67..1adcc2fe98 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()