Remove unneeded code.

This commit is contained in:
Bryan Mauger 2024-05-07 11:16:21 -04:00
parent 71db16a0db
commit 792ccd8bce

View file

@ -150,10 +150,10 @@ export default {
}, },
minLength: 0, // Necessary to display fmenu when clearing input minLength: 0, // Necessary to display fmenu when clearing input
select: function (event, ui) { select: function (ui) {
select(ui.item.value); select(ui.item.value);
}, },
change: function (event, ui) { change: function (ui) {
select(ui?.item?.value); select(ui?.item?.value);
}, },
}); });