diff --git a/__init__.py b/__init__.py index 2ceb962..e132cf0 100644 --- a/__init__.py +++ b/__init__.py @@ -17,7 +17,7 @@ import http.client import re import signal -version = "V1.6" +version = "V1.6.1" print(f"### Loading: ComfyUI-Manager ({version})") diff --git a/js/custom-nodes-downloader.js b/js/custom-nodes-downloader.js index 09a7057..40d6a7d 100644 --- a/js/custom-nodes-downloader.js +++ b/js/custom-nodes-downloader.js @@ -129,7 +129,7 @@ export class CustomNodesInstaller extends ComfyDialog { let keyword = this.search_box.value.toLowerCase(); for(let i in this.grid_rows) { let data = this.grid_rows[i].data; - let content = data.author.toLowerCase() + data.description.toLowerCase() + data.title.toLowerCase(); + let content = data.author.toLowerCase() + data.description.toLowerCase() + data.title.toLowerCase() + data.reference.toLowerCase(); if(this.filter && this.filter != '*') { if(this.filter != data.installed) { @@ -694,7 +694,7 @@ export class CustomNodesInstaller extends ComfyDialog { let filter_control = this.createFilterCombo(); filter_control.style.display = "inline-block"; - let channel_badge = null; + let channel_badge = ''; if(this.channel != 'default') { channel_badge = $el('span', {id:'cm-channel-badge'}, [`Channel: ${this.channel}`]); }