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

main
comfyanonymous 2 years ago
commit cc66fbe5da

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

Loading…
Cancel
Save