diff --git a/js/comfyui-manager.js b/js/comfyui-manager.js index 80540d85..93c23879 100644 --- a/js/comfyui-manager.js +++ b/js/comfyui-manager.js @@ -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(); }