fix: keep disabled unused packages manageable

This commit is contained in:
2026-07-29 19:30:54 +02:00
parent 6d433ba371
commit c43c8dde79
5 changed files with 100 additions and 17 deletions
+4 -2
View File
@@ -21,8 +21,10 @@ const STATUS_META = {
uninstalled: { label: "uninstalled", color: "#555", bg: "#1a1a1a", hover: "#252525", summaryBg: "#1a1a1a", summaryText: "#888" },
};
// Tiers that may offer a "Disable" action (when ComfyUI Manager is available).
const DISABLEABLE_TIERS = new Set(["safe_to_remove", "consider_removing"]);
// Tiers that may offer a "Disable" action. A package never used during the
// first month is safe to disable manually too; waiting a month would otherwise
// strand common one-off installs such as VAE Decode PlusPlus.
const DISABLEABLE_TIERS = new Set(["safe_to_remove", "consider_removing", "unused_new"]);
// Setting id for the auto-open-on-load behavior. Defaults to off so loading a
// workflow with missing/disabled nodes no longer pops the dialog every time.