Fix return key from 'results' to 'result'

This commit is contained in:
comfyanonymous 2026-04-14 14:40:00 -04:00 committed by GitHub
parent 1dcb9e73f5
commit e88dd4af98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,7 +33,7 @@ class PreviewAny():
except Exception:
value = 'source exists, but could not be serialized.'
return {"ui": {"text": (value,)}, "results": (value,)}
return {"ui": {"text": (value,)}, "result": (value,)}
NODE_CLASS_MAPPINGS = {
"PreviewAny": PreviewAny,