mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-09 22:24:23 +08:00
improve: search support repo
fix: display 'null' when default channel
This commit is contained in:
parent
6cb8346506
commit
8eb16cfefb
@ -17,7 +17,7 @@ import http.client
|
||||
import re
|
||||
import signal
|
||||
|
||||
version = "V1.6"
|
||||
version = "V1.6.1"
|
||||
print(f"### Loading: ComfyUI-Manager ({version})")
|
||||
|
||||
|
||||
|
||||
@ -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}`]);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user