Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ export const useImageCompareWidget = (): ComfyWidgetConstructorV2 => {
...options
}) as IImageCompareWidget

// widget.serialize controls workflow persistence; widget.options.serialize
// controls prompt (API) serialization — only disable the former.
Comment on lines +18 to +19
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: I don't know that we need the comment, but this is something I'll keep in mind in the WidgetStore work. We shouldn't have options like this at different levels.

Suggested change
// widget.serialize controls workflow persistence; widget.options.serialize
// controls prompt (API) serialization — only disable the former.

widget.serialize = false

return widget
}
}