diff --git a/browser_tests/tests/nodeSearchBox.spec.ts-snapshots/link-release-context-menu-chromium-linux.png b/browser_tests/tests/nodeSearchBox.spec.ts-snapshots/link-release-context-menu-chromium-linux.png index 8f97af570..1cdaa2820 100644 Binary files a/browser_tests/tests/nodeSearchBox.spec.ts-snapshots/link-release-context-menu-chromium-linux.png and b/browser_tests/tests/nodeSearchBox.spec.ts-snapshots/link-release-context-menu-chromium-linux.png differ diff --git a/src/extensions/core/slotDefaults.ts b/src/extensions/core/slotDefaults.ts index 2f124b198..c3bfd657e 100644 --- a/src/extensions/core/slotDefaults.ts +++ b/src/extensions/core/slotDefaults.ts @@ -44,7 +44,7 @@ app.registerExtension({ } if (!(type in this.slot_types_default_out)) { - this.slot_types_default_out[type] = [] + this.slot_types_default_out[type] = ['Reroute'] } if (this.slot_types_default_out[type].includes(nodeId)) continue this.slot_types_default_out[type].push(nodeId) @@ -65,7 +65,7 @@ app.registerExtension({ for (const el of outputs) { const type = el as string if (!(type in this.slot_types_default_in)) { - this.slot_types_default_in[type] = [] + this.slot_types_default_in[type] = ['Reroute'] } if (this.slot_types_default_in[type].includes(nodeId)) continue diff --git a/src/scripts/app.ts b/src/scripts/app.ts index bd92274e3..e7308d1a8 100644 --- a/src/scripts/app.ts +++ b/src/scripts/app.ts @@ -965,7 +965,7 @@ export class ComfyApp { { showMissingNodesDialog = true, showMissingModelsDialog = true, - checkForRerouteMigration = true + checkForRerouteMigration = false } = {} ) { if (clean !== false) {