Merge pull request #1847 from Safelite/CSR-2072-reinsert-event
Reinsert event to fix breakage. Ooops.
This commit is contained in:
commit
3333d8bf6c
1 changed files with 2 additions and 2 deletions
|
|
@ -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 (ui) {
|
select: function (event, ui) {
|
||||||
select(ui.item.value);
|
select(ui.item.value);
|
||||||
},
|
},
|
||||||
change: function (ui) {
|
change: function (event, ui) {
|
||||||
select(ui?.item?.value);
|
select(ui?.item?.value);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue