From f11494bc7066e6de311de4d5e39c2a2aefa6b03f Mon Sep 17 00:00:00 2001 From: bymyself Date: Mon, 23 Jun 2025 05:30:33 -0700 Subject: [PATCH] remove the temporary check for legacy custom node version of manager --- .../dialog/content/LoadWorkflowWarning.vue | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/src/components/dialog/content/LoadWorkflowWarning.vue b/src/components/dialog/content/LoadWorkflowWarning.vue index fdb4dfd72..471607483 100644 --- a/src/components/dialog/content/LoadWorkflowWarning.vue +++ b/src/components/dialog/content/LoadWorkflowWarning.vue @@ -31,10 +31,7 @@ -
+
() -const aboutPanelStore = useAboutPanelStore() - // Get missing node packs from workflow with loading and error states const { missingNodePacks, isLoading, error, missingCoreNodes } = useMissingNodes() -// Determines if ComfyUI-Manager is installed by checking for its badge in the about panel -// This allows us to conditionally show the Manager button only when the extension is available -// TODO: Remove this check when Manager functionality is fully migrated into core -const isManagerInstalled = computed(() => { - return aboutPanelStore.badges.some( - (badge) => - badge.label.includes('ComfyUI-Manager') || - badge.url.includes('ComfyUI-Manager') - ) -}) const isLegacyManager = ref(false) const uniqueNodes = computed(() => {