Fix issue opening dropdown when typing [SCI-9172] (#6171)

This commit is contained in:
wandji 2023-09-11 14:29:27 +01:00 committed by GitHub
parent 8c3ff1813a
commit 1631de67ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -381,6 +381,9 @@ var dropdownSelector = (function() {
|| (config.selectKeys || []).includes(e.keyCode)) {
return;
}
if (!dropdownContainer.hasClass('open')) {
dropdownContainer.find('.input-field').focus();
}
e.stopPropagation();
loadData(selectElement, dropdownContainer);
})