From d1c48064e73cf8df8b8045fa03d063d6f15e7d13 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Sun, 26 Mar 2023 21:44:54 +0900 Subject: [PATCH] move refresh button position --- web/scripts/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/scripts/ui.js b/web/scripts/ui.js index 96f5d5550..836ae9311 100644 --- a/web/scripts/ui.js +++ b/web/scripts/ui.js @@ -375,8 +375,8 @@ export class ComfyUI { }, 0); }, }), - $el("button", { textContent: "Refresh", onclick: () => app.refreshNodes() }), $el("button", { textContent: "Load", onclick: () => fileInput.click() }), + $el("button", { textContent: "Refresh", onclick: () => app.refreshNodes() }), $el("button", { textContent: "Clear", onclick: () => app.graph.clear() }), $el("button", { textContent: "Load Default", onclick: () => app.loadGraphData() }), ]);