Browse Source

Clone default graph before using

pull/346/head
pythongosssss 2 years ago
parent
commit
06c2c19b5a
  1. 2
      web/scripts/app.js

2
web/scripts/app.js

@ -802,7 +802,7 @@ class ComfyApp {
this.clean();
if (!graphData) {
graphData = defaultGraph;
graphData = structuredClone(defaultGraph);
}
// Patch T2IAdapterLoader to ControlNetLoader since they are the same node now

Loading…
Cancel
Save