diff --git a/__init__.py b/__init__.py index 053b836f..957ec9d1 100644 --- a/__init__.py +++ b/__init__.py @@ -33,7 +33,7 @@ sys.path.append('../..') from torchvision.datasets.utils import download_url # ensure .js -print("### Loading: ComfyUI-Manager (V0.18.1)") +print("### Loading: ComfyUI-Manager (V0.18.2)") comfy_ui_required_revision = 1240 comfy_ui_revision = "Unknown" diff --git a/js/comfyui-manager.js b/js/comfyui-manager.js index a085b949..faf4aeea 100644 --- a/js/comfyui-manager.js +++ b/js/comfyui-manager.js @@ -566,6 +566,10 @@ class CustomNodesInstaller extends ComfyDialog { self.apply_searchbox(); }); + if(self.filter) { + combo.value = self.filter; + } + return combo; } @@ -945,6 +949,10 @@ class AlternativesInstaller extends ComfyDialog { self.apply_searchbox(); }); + if(self.filter) { + combo.value = self.filter; + } + return combo; }