Browse Source

prevent crashing if the widget cant be found

pull/1121/head
pythongosssss 1 year ago
parent
commit
32e115b818
  1. 6
      web/extensions/core/contextMenuFilter.js

6
web/extensions/core/contextMenuFilter.js

@ -27,10 +27,10 @@ const ext = {
const clickedComboValue = currentNode.widgets
.filter(w => w.type === "combo" && w.options.values.length === values.length)
.find(w => w.options.values.every((v, i) => v === values[i]))
.value;
?.value;
let selectedIndex = values.findIndex(v => v === clickedComboValue);
let selectedItem = displayedItems?.[selectedIndex];
let selectedIndex = clickedComboValue ? values.findIndex(v => v === clickedComboValue) : 0;
let selectedItem = displayedItems[selectedIndex];
updateSelected();
// Apply highlighting to the selected item

Loading…
Cancel
Save