diff --git a/web/comfyui/workflow_registry.js b/web/comfyui/workflow_registry.js index 2b5b687f..19ff70a2 100644 --- a/web/comfyui/workflow_registry.js +++ b/web/comfyui/workflow_registry.js @@ -316,7 +316,7 @@ app.registerExtension({ const ts = new Date().toISOString().slice(11, 23); let msg = format; for (const arg of args) { - msg = msg.replace(/%s/g, String(arg)); + msg = msg.replace(/%s/, String(arg)); } console.debug(`[LM:Registry ${ts}] ${msg}`); },