1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix down arrow triggering menu in search box

fixes #3491
This commit is contained in:
Steve-Mcl 2022-03-24 11:28:24 +00:00
parent cb88409102
commit 5e197713ff

View File

@ -105,8 +105,8 @@
}
});
this.element.on("keydown",function(e) {
if (!menuShown && e.keyCode === 40) {
//DOWN
if (!menuShown && e.keyCode === 40 && $(this).val() === '') {
//DOWN (only show menu if search field is emty)
showMenu();
}
});