Browse Source

fix: handle null case for currentNode widgets to prevent scroll error

pull/1882/head
Joseph Antolick 1 year ago
parent
commit
88410ace9b
  1. 2
      web/extensions/core/contextMenuFilter.js

2
web/extensions/core/contextMenuFilter.js

@ -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;

Loading…
Cancel
Save