mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 10:25:16 +00:00
clean state when loading another workflow
This commit is contained in:
parent
31dd6c0531
commit
393084877c
@ -903,6 +903,13 @@ class ComfyApp {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Clean current state
|
||||
*/
|
||||
clean() {
|
||||
this.nodeOutputs = {};
|
||||
}
|
||||
}
|
||||
|
||||
export const app = new ComfyApp();
|
||||
|
@ -306,6 +306,7 @@ export class ComfyUI {
|
||||
style: { display: "none" },
|
||||
parent: document.body,
|
||||
onchange: () => {
|
||||
app.clean();
|
||||
app.handleFile(fileInput.files[0]);
|
||||
},
|
||||
});
|
||||
@ -388,8 +389,14 @@ export class ComfyUI {
|
||||
}),
|
||||
$el("button", { textContent: "Load", onclick: () => fileInput.click() }),
|
||||
$el("button", { textContent: "Refresh", onclick: () => app.refreshComboInNodes() }),
|
||||
$el("button", { textContent: "Clear", onclick: () => app.graph.clear() }),
|
||||
$el("button", { textContent: "Load Default", onclick: () => app.loadGraphData() }),
|
||||
$el("button", { textContent: "Clear", onclick: () => {
|
||||
app.clean();
|
||||
app.graph.clear();
|
||||
}}),
|
||||
$el("button", { textContent: "Load Default", onclick: () => {
|
||||
app.clean();
|
||||
app.loadGraphData();
|
||||
}}),
|
||||
]);
|
||||
|
||||
dragElement(this.menuContainer);
|
||||
|
Loading…
Reference in New Issue
Block a user