mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-10 06:34:24 +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 re
|
||||||
import signal
|
import signal
|
||||||
|
|
||||||
version = "V1.6"
|
version = "V1.6.1"
|
||||||
print(f"### Loading: ComfyUI-Manager ({version})")
|
print(f"### Loading: ComfyUI-Manager ({version})")
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -129,7 +129,7 @@ export class CustomNodesInstaller extends ComfyDialog {
|
|||||||
let keyword = this.search_box.value.toLowerCase();
|
let keyword = this.search_box.value.toLowerCase();
|
||||||
for(let i in this.grid_rows) {
|
for(let i in this.grid_rows) {
|
||||||
let data = this.grid_rows[i].data;
|
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 && this.filter != '*') {
|
||||||
if(this.filter != data.installed) {
|
if(this.filter != data.installed) {
|
||||||
@ -694,7 +694,7 @@ export class CustomNodesInstaller extends ComfyDialog {
|
|||||||
let filter_control = this.createFilterCombo();
|
let filter_control = this.createFilterCombo();
|
||||||
filter_control.style.display = "inline-block";
|
filter_control.style.display = "inline-block";
|
||||||
|
|
||||||
let channel_badge = null;
|
let channel_badge = '';
|
||||||
if(this.channel != 'default') {
|
if(this.channel != 'default') {
|
||||||
channel_badge = $el('span', {id:'cm-channel-badge'}, [`Channel: ${this.channel}`]);
|
channel_badge = $el('span', {id:'cm-channel-badge'}, [`Channel: ${this.channel}`]);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user