diff --git a/comfy_extras/nodes_toolkit.py b/comfy_extras/nodes_toolkit.py index 26148a864..07d235fa6 100644 --- a/comfy_extras/nodes_toolkit.py +++ b/comfy_extras/nodes_toolkit.py @@ -20,7 +20,11 @@ class ConvertToList(io.ComfyNode): search_aliases=["Image Iterator", "Text Iterator", "Iterator"], inputs=[_io.Autogrow.Input("inputs", template=template_autogrow)], outputs=[ - io.MatchType.Output(template=template_matchtype, is_output_list=True), + io.MatchType.Output( + template=template_matchtype, + is_output_list=True, + display_name="list", + ), ], ) diff --git a/nodes.py b/nodes.py index 1f4de4feb..decc2def4 100644 --- a/nodes.py +++ b/nodes.py @@ -2432,7 +2432,7 @@ async def init_builtin_extra_nodes(): "nodes_wanmove.py", "nodes_image_compare.py", "nodes_zimage.py", - "nodes_lora_debug.py" + "nodes_lora_debug.py", "nodes_toolkit.py", ]