Merge pull request #1847 from Safelite/CSR-2072-reinsert-event

Reinsert event to fix breakage. Ooops.
This commit is contained in:
bmauger 2024-05-07 12:06:31 -04:00 committed by GitHub
commit 3333d8bf6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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