From c5312d6963df026a4e741c8a1b408bd9a3f051cb Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Mon, 15 Dec 2025 12:00:18 +0900 Subject: [PATCH] [backport core/1.35] feat(server-config): add legacy manager UI toggle (#7482) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #7478 to `core/1.35` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7482-backport-core-1-35-feat-server-config-add-legacy-manager-UI-toggle-2ca6d73d365081c8b614dee970faf9ee) by [Unito](https://www.unito.io) Co-authored-by: Benjamin Lu --- src/constants/serverConfig.ts | 7 +++++++ src/locales/en/main.json | 6 +++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/constants/serverConfig.ts b/src/constants/serverConfig.ts index 64e655e3d..bd47a0895 100644 --- a/src/constants/serverConfig.ts +++ b/src/constants/serverConfig.ts @@ -389,6 +389,13 @@ export const SERVER_CONFIG_ITEMS: ServerConfig[] = [ type: 'boolean', defaultValue: false }, + { + id: 'enable-manager-legacy-ui', + name: 'Use legacy Manager UI', + tooltip: 'Uses the legacy ComfyUI-Manager UI instead of the new UI.', + type: 'boolean', + defaultValue: false + }, { id: 'disable-all-custom-nodes', name: 'Disable loading all custom nodes.', diff --git a/src/locales/en/main.json b/src/locales/en/main.json index 8403c0205..fb26bef0c 100644 --- a/src/locales/en/main.json +++ b/src/locales/en/main.json @@ -1333,6 +1333,10 @@ "disable-metadata": { "name": "Disable saving prompt metadata in files." }, + "enable-manager-legacy-ui": { + "name": "Use legacy Manager UI", + "tooltip": "Uses the legacy ComfyUI-Manager UI instead of the new UI." + }, "disable-all-custom-nodes": { "name": "Disable loading all custom nodes." }, @@ -2444,4 +2448,4 @@ "recentReleases": "Recent releases", "helpCenterMenu": "Help Center Menu" } -} \ No newline at end of file +}