From a7e4a86ec8f36a6c11b6dde1d38b4a7154b20e08 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Tue, 3 Feb 2026 16:54:00 -0800 Subject: [PATCH] fix: correct #visibleReroutes to _visibleReroutes typo (#8597) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes build failure on main caused by merge conflict typo. - `#visibleReroutes` → `_visibleReroutes` on line 5644 of LGraphCanvas.ts Fixes https://github.com/Comfy-Org/ComfyUI_frontend/actions/runs/21653103679/job/62422017295 ## Summary by CodeRabbit * **Refactor** * Internal code style adjustment with no user-facing impact. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8597-fix-correct-visibleReroutes-to-_visibleReroutes-typo-2fd6d73d365081ce9202d070f80fc5c3) by [Unito](https://www.unito.io) --- src/lib/litegraph/src/LGraphCanvas.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/litegraph/src/LGraphCanvas.ts b/src/lib/litegraph/src/LGraphCanvas.ts index 4dde55cb4..a7ec4e597 100644 --- a/src/lib/litegraph/src/LGraphCanvas.ts +++ b/src/lib/litegraph/src/LGraphCanvas.ts @@ -5641,7 +5641,7 @@ export class LGraphCanvas implements CustomEventDispatcher // Skip link rendering while waiting for slot positions to sync after reconfigure if (LiteGraph.vueNodesMode && layoutStore.pendingSlotSync) { - this.#visibleReroutes.clear() + this._visibleReroutes.clear() return }