Fix frontend-only node freezing litegraph (#817)

This commit is contained in:
Chenlei Hu
2024-09-13 20:58:19 +09:00
committed by GitHub
parent 17db1e6074
commit a08ec196c7

View File

@@ -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]'
}