From 8fc68404348f85bea4bb497c5ad7c754c2d8a73d Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Wed, 2 Apr 2025 11:07:25 -0400 Subject: [PATCH] [Bug] Fix progress bar display on last output node (#3309) --- src/components/graph/GraphCanvas.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/graph/GraphCanvas.vue b/src/components/graph/GraphCanvas.vue index ada7e1ff8..6a214c8a5 100644 --- a/src/components/graph/GraphCanvas.vue +++ b/src/components/graph/GraphCanvas.vue @@ -169,7 +169,6 @@ watch( number | null ], ([executingNodeId, executingNodeProgress]) => { - if (!executingNodeId) return for (const node of comfyApp.graph.nodes) { if (node.id == executingNodeId) { node.progress = executingNodeProgress ?? undefined