Preserve empty static display names

This commit is contained in:
2026-07-02 21:37:18 +02:00
parent a2a5b44436
commit f0b83b5505
2 changed files with 28 additions and 1 deletions
+1 -1
View File
@@ -2518,7 +2518,7 @@ def _signature_from_class(node_type, cls, display, pack_meta, class_env, input_e
return {
"type": node_type,
"display": display or node_type,
"display": display if display is not None else node_type,
"pack": pack_meta["id"],
"repository": pack_meta.get("repository", ""),
"inputs": inputs,