mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-21 23:34:31 +00:00
Fix frontend-only node freezing litegraph (#817)
This commit is contained in:
@@ -57,6 +57,11 @@ function getNodeLifeCycleBadgeText(
|
||||
let text = ''
|
||||
const nodeDef = (node.constructor as typeof ComfyLGraphNode).nodeData
|
||||
|
||||
// Frontend-only nodes don't have nodeDef
|
||||
if (!nodeDef) {
|
||||
return ''
|
||||
}
|
||||
|
||||
if (nodeDef.deprecated) {
|
||||
text = '[DEPR]'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user