Closed Hujikuio closed 2 weeks ago
Having the same problem on a fresh install of ComfyUI through SwarmUI
ComfyUI-Custom-Scripts\web\js\autocompleter.js
495行
app.ui.settings.element.close();
改
if (typeof app.ui.settings.element.close === "function") { app.ui.settings.element.close(); } else { app.ui.settings.element.style.display = "none"; }
ComfyUI-Custom-Scripts\web\js\autocompleter.js 495行
app.ui.settings.element.close();
改if (typeof app.ui.settings.element.close === "function") { app.ui.settings.element.close(); } else { app.ui.settings.element.style.display = "none"; }
@pythongosssss This seems to fix the issue. I needed to replace the same element.close function in widgetDefaults.js as well though to get the other menu working. Are there any other scripts that I should update the function in?
Can confirm! After making the same change in both autocompleter.js (ln 495) and widgetDefaults.js (ln 271) I am now able to load the Custom Autocomplete Words menu again.
+1, both menus DOA on a clean install, above fix works.
Thanks, i've updated the broken bits now!
I remade a fresh portable comfyui install and still have this issue, tried in multiple browsers as well. The browser console log states that the autocompleter.js is not a function and that the server cannot be found.