Deprecate widgetType:widgetName key in widgets map (#2879)

This commit is contained in:
Chenlei Hu
2025-03-05 13:32:47 -05:00
committed by GitHub
parent 35e6cabfe7
commit ba4e4ed0b8
4 changed files with 10 additions and 29 deletions

View File

@@ -934,8 +934,6 @@ export class ComfyApp {
if (Array.isArray(type)) {
return 'COMBO'
} else if (`${type}:${inputName}` in this.widgets) {
return `${type}:${inputName}`
} else if (type in this.widgets) {
return type
} else {