Browse Source

Fix some errors

pull/575/head
alethiophile 2 years ago
parent
commit
ce62d78b13
  1. 2
      web/scripts/api.js
  2. 10
      web/scripts/ui.js

2
web/scripts/api.js

@ -310,9 +310,7 @@ class ComfyApi extends EventTarget {
// I'll just use client storage for now
try {
const r = load_saved();
console.log("r is", r);
return { Saved: Object.values(r).map((i) => {
console.log(i);
i['remove'] = {
name: "Delete",
cb: () => {

10
web/scripts/ui.js

@ -263,14 +263,18 @@ class ComfyList {
async show() {
this.element.style.display = "block";
this.button.textContent = "Close";
if (this.button) {
this.button.textContent = "Close";
}
await this.load();
}
hide() {
this.element.style.display = "none";
this.button.textContent = "View " + this.#text;
if (this.button) {
this.button.textContent = "View " + this.#text;
}
}
toggle() {
@ -545,6 +549,7 @@ export class ComfyUI {
};
list[name] = new_item;
save_saved(list);
this.saved.update();
},
}),
$el("button", {
@ -632,6 +637,7 @@ export class ComfyUI {
}),
]);
this.saved.show();
this.saved.update();
const devMode = this.settings.addSetting({
id: "Comfy.DevMode",

Loading…
Cancel
Save