diff --git a/web/scripts/app.js b/web/scripts/app.js index 3b7483c..ce5e27d 100644 --- a/web/scripts/app.js +++ b/web/scripts/app.js @@ -994,6 +994,10 @@ export class ComfyApp { api.addEventListener("execution_start", ({ detail }) => { this.runningNodeId = null; this.lastExecutionError = null + this.graph._nodes.forEach((node) => { + if (node.onExecutionStart) + node.onExecutionStart() + }) }); api.addEventListener("execution_error", ({ detail }) => {