Don't strip combo value from workflow

This commit is contained in:
space-nuko
2023-06-08 22:20:45 -05:00
parent 4a92bb68ee
commit 3275777d2f

View File

@@ -170,7 +170,6 @@ export default class ComfyComboNode extends ComfyWidgetNode<string> {
super.stripUserState(o); super.stripUserState(o);
o.properties.values = [] o.properties.values = []
o.properties.defaultValue = null; o.properties.defaultValue = null;
(o as any).comfyValue = null
} }
} }