Merge branch 'filter-widgets-crash-fix' of https://github.com/Jantolick/ComfyUI

This commit is contained in:
comfyanonymous 2023-11-01 20:17:25 -04:00
commit 45a3df1cde

View File

@ -25,7 +25,7 @@ const ext = {
requestAnimationFrame(() => {
const currentNode = LGraphCanvas.active_canvas.current_node;
const clickedComboValue = currentNode.widgets
.filter(w => w.type === "combo" && w.options.values.length === values.length)
?.filter(w => w.type === "combo" && w.options.values.length === values.length)
.find(w => w.options.values.every((v, i) => v === values[i]))
?.value;