Fix a bug that causes comfy to hang

This commit is contained in:
Harel Cain 2024-03-19 13:42:49 +02:00
parent 970a23467d
commit 52e98cfa15

View File

@ -249,7 +249,7 @@ app.registerExtension({
},
{
values: () => {
const setterNodes = graph._nodes.filter((otherNode) => otherNode.type == 'SetNode');
const setterNodes = node.graph._nodes.filter((otherNode) => otherNode.type == 'SetNode');
return setterNodes.map((otherNode) => otherNode.widgets[0].value).sort();
}
}