Skip to content

Commit

Permalink
bug fix: select custom does not work if no suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
GaziYucel committed Jan 13, 2025
1 parent 2346fc6 commit 59b7d44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function changeFocus(focused) {
function handleSelect(suggestion) {
if (!suggestion) {
if (!inputValue.value || !mappedSuggestions.value.length) {
if (!inputValue.value) {
return;
}
Expand Down

0 comments on commit 59b7d44

Please sign in to comment.