Skip to content

Commit bf044b7

Browse files
[backport 1.26] fix: don't immediately close missing nodes dialog if manager is disabled (#5648)
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 <[email protected]>
1 parent 9cd29d6 commit bf044b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/dialog/content/LoadWorkflowWarning.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ const allMissingNodesInstalled = computed(() => {
138138
})
139139
// Watch for completion and close dialog
140140
watch(allMissingNodesInstalled, async (allInstalled) => {
141-
if (allInstalled) {
141+
if (allInstalled && showInstallAllButton.value) {
142142
// Use nextTick to ensure state updates are complete
143143
await nextTick()
144144

0 commit comments

Comments
 (0)