Skip to content

Commit dac73dc

Browse files
[backport 1.27] fix: don't immediately close missing nodes dialog if manager is disabled (#5649)
Backport of #5647 to `core/1.27` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-5649-backport-1-27-fix-don-t-immediately-close-missing-nodes-dialog-if-manager-is-disabled-2736d73d3650813681a7d1983f8ccf96) by [Unito](https://www.unito.io) Co-authored-by: Christian Byrne <[email protected]>
1 parent a99df5d commit dac73dc

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)