diff --git a/comfy_extras/nodes_model_patch.py b/comfy_extras/nodes_model_patch.py index cc6b98133..3f785c8b5 100644 --- a/comfy_extras/nodes_model_patch.py +++ b/comfy_extras/nodes_model_patch.py @@ -676,7 +676,7 @@ NODE_CLASS_MAPPINGS = { "SUPIRApply": SUPIRApply, } -NODE_DISPLAY_NAMES = { +NODE_DISPLAY_NAME_MAPPINGS = { "ModelPatchLoader": "Load Model Patch", "QwenImageDiffsynthControlnet": "Apply Qwen Image DiffSynth ControlNet", "ZImageFunControlnet": "Apply Z-Image Fun ControlNet", diff --git a/nodes.py b/nodes.py index a1b2f8281..bb4649478 100644 --- a/nodes.py +++ b/nodes.py @@ -257,7 +257,7 @@ class ConditioningZeroOut: RETURN_TYPES = ("CONDITIONING",) FUNCTION = "zero_out" - CATEGORY = "model/conditioning" + CATEGORY = "model/conditioning/transform" def zero_out(self, conditioning): c = []