From 49704d801ce499d9fcf42239f70373c0b33f1334 Mon Sep 17 00:00:00 2001 From: Will Miao Date: Wed, 2 Sep 2026 11:38:30 +0800 Subject: [PATCH] fix: show lora info regardless of toggle state --- web/comfyui/lora_info.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/comfyui/lora_info.js b/web/comfyui/lora_info.js index 63f4f2b3..abf2fdbb 100644 --- a/web/comfyui/lora_info.js +++ b/web/comfyui/lora_info.js @@ -58,8 +58,8 @@ export async function updateConnectedLoraInfoNodes(node, selection) { return; } - // No selection or inactive — clear the display on all connected info nodes - if (!selection?.name || !selection?.active) { + // No selection — clear the display on all connected info nodes + if (!selection?.name) { for (const infoNode of infoNodes) { infoNode.__loraInfoReqId = (infoNode.__loraInfoReqId || 0) + 1; if (typeof infoNode._setLoraInfo === "function") {