Skip to content

Commit 59b7d44

Browse files
committed
bug fix: select custom does not work if no suggestions
1 parent 2346fc6 commit 59b7d44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Form/fields/FieldAffiliationsRorAutoSuggest.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function changeFocus(focused) {
125125
126126
function handleSelect(suggestion) {
127127
if (!suggestion) {
128-
if (!inputValue.value || !mappedSuggestions.value.length) {
128+
if (!inputValue.value) {
129129
return;
130130
}
131131

0 commit comments

Comments
 (0)