remove hide method in favor of super class's close method

This commit is contained in:
christian-byrne 2025-02-01 14:12:30 -07:00
parent 5110a5695b
commit 68edf7bc2a

View File

@ -1276,13 +1276,9 @@ class ManagerMenuDialog extends ComfyDialog {
this.element.style.display = "block";
}
hide() {
this.element.style.display = "none";
}
toggleVisibility() {
if(this.isVisible) {
this.hide();
this.close();
} else {
this.show();
}