Migrate node library sidebar to use unique name instead of display name (#702)

* Migrate node library sidebar to use unique name instead of display name

* Break word
This commit is contained in:
Chenlei Hu
2024-09-01 17:52:53 -04:00
committed by GitHub
parent ff2d160230
commit 14da8433f7
10 changed files with 128 additions and 90 deletions

View File

@@ -207,7 +207,7 @@ export class ComfyNodeDefImpl {
}
get nodePath(): string {
return (this.category ? this.category + '/' : '') + this.display_name
return (this.category ? this.category + '/' : '') + this.name
}
get isDummyFolder(): boolean {