From bc3ba768fd70d7741c4a4bd161ca7ec8b41a910e Mon Sep 17 00:00:00 2001 From: Jin Yi Date: Sun, 17 Aug 2025 20:04:14 +0900 Subject: [PATCH] feat: run conflict detection after Apply Changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Run performConflictDetection automatically after the backend restarts from Apply Changes button to detect conflicts in newly installed packages 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/components/dialog/footer/ManagerProgressFooter.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/dialog/footer/ManagerProgressFooter.vue b/src/components/dialog/footer/ManagerProgressFooter.vue index eb527e35d..caef676be 100644 --- a/src/components/dialog/footer/ManagerProgressFooter.vue +++ b/src/components/dialog/footer/ManagerProgressFooter.vue @@ -102,6 +102,7 @@ import { computed, ref } from 'vue' import { useI18n } from 'vue-i18n' import DotSpinner from '@/components/common/DotSpinner.vue' +import { useConflictDetection } from '@/composables/useConflictDetection' import { api } from '@/scripts/api' import { useComfyManagerService } from '@/services/comfyManagerService' import { useWorkflowService } from '@/services/workflowService' @@ -118,6 +119,7 @@ const dialogStore = useDialogStore() const progressDialogContent = useManagerProgressDialogStore() const comfyManagerStore = useComfyManagerStore() const settingStore = useSettingStore() +const { performConflictDetection } = useConflictDetection() // State management for restart process const isRestarting = ref(false) @@ -163,6 +165,9 @@ const handleRestart = async () => { await useCommandStore().execute('Comfy.RefreshNodeDefinitions') await useWorkflowService().reloadCurrentWorkflow() + + // Run conflict detection on all installed packages after restart + await performConflictDetection() } finally { await settingStore.set( 'Comfy.Toast.DisableReconnectingToast',