From 57b847eebfa3c61dd9c6d97ed4e33cd498261686 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Mon, 24 Mar 2025 23:12:45 +0900 Subject: [PATCH] fixed: failed[..].ui_id -> failed --- comfyui_manager/js/custom-nodes-manager.js | 2 +- comfyui_manager/js/model-manager.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/comfyui_manager/js/custom-nodes-manager.js b/comfyui_manager/js/custom-nodes-manager.js index 7bbb0250..e8c714f4 100644 --- a/comfyui_manager/js/custom-nodes-manager.js +++ b/comfyui_manager/js/custom-nodes-manager.js @@ -1543,7 +1543,7 @@ export class CustomNodesManager { if(failed.length > 0) { for(let k in failed) { - let hash = failed[k].ui_id; + let hash = failed[k]; const item = this.grid.getRowItemBy("hash", hash); errorMsg = `[FAIL] ${item.title}`; } diff --git a/comfyui_manager/js/model-manager.js b/comfyui_manager/js/model-manager.js index d57f639c..0730862f 100644 --- a/comfyui_manager/js/model-manager.js +++ b/comfyui_manager/js/model-manager.js @@ -472,7 +472,7 @@ export class ModelManager { if(failed.length > 0) { for(let k in failed) { - let hash = failed[k].ui_id; + let hash = failed[k]; const item = self.grid.getRowItemBy("hash", hash); errorMsg = `[FAIL] ${item.title}`; }