Merge branch 'fix-hidden-save-prefix' of https://github.com/tjhayasaka/ComfyUI

This commit is contained in:
comfyanonymous 2023-04-02 14:00:05 -04:00
commit cc66fbe5da

View File

@ -20,7 +20,7 @@ function hideWidget(node, widget, suffix = "") {
if (link == null) { if (link == null) {
return undefined; return undefined;
} }
return widget.value; return widget.origSerializeValue ? widget.origSerializeValue() : widget.value;
}; };
// Hide any linked widgets, e.g. seed+randomize // Hide any linked widgets, e.g. seed+randomize