Commit cc66fbe5 authored by comfyanonymous's avatar comfyanonymous
Browse files

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

parents ed3bd0d4 1917064b
...@@ -20,7 +20,7 @@ function hideWidget(node, widget, suffix = "") { ...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment