diff --git a/client/components/ui/MultiSelect.vue b/client/components/ui/MultiSelect.vue
index 26c85bbd..516b062d 100644
--- a/client/components/ui/MultiSelect.vue
+++ b/client/components/ui/MultiSelect.vue
@@ -17,7 +17,7 @@
- -
+
-
{{ item }}
@@ -129,14 +129,12 @@ export default {
} else {
this.selectedMenuItemIndex = Math.min(this.selectedMenuItemIndex + 1, items.length - 1)
}
- console.log('ArrowDown. this.selectedMenuItemIndex=', this.selectedMenuItemIndex)
} else if (event.key === 'ArrowUp') {
if (this.selectedMenuItemIndex === null) {
this.selectedMenuItemIndex = items.length - 1
} else {
this.selectedMenuItemIndex = Math.max(this.selectedMenuItemIndex - 1, 0)
}
- console.log('ArrowUp. this.selectedMenuItemIndex=', this.selectedMenuItemIndex)
}
this.recalcScroll()
return
@@ -144,7 +142,6 @@ export default {
if (this.selectedMenuItemIndex !== null) {
this.clickedOption(event, items[this.selectedMenuItemIndex])
} else {
- console.log('Enter. this.textInput=', this.textInput)
this.submitForm()
}
return
diff --git a/client/components/ui/MultiSelectQueryInput.vue b/client/components/ui/MultiSelectQueryInput.vue
index d671e29d..6e9c0f10 100644
--- a/client/components/ui/MultiSelectQueryInput.vue
+++ b/client/components/ui/MultiSelectQueryInput.vue
@@ -20,7 +20,7 @@
- -
+
-
{{ item.name }}
@@ -143,7 +143,7 @@ export default {
}
this.recalcScroll()
return
- } else if (event.key === 'Enter') {
+ } else if (event.key === 'Enter') {
if (this.selectedMenuItemIndex !== null) {
this.clickedOption(event, items[this.selectedMenuItemIndex])
} else {
@@ -155,7 +155,7 @@ export default {
clearTimeout(this.typingTimeout)
this.typingTimeout = setTimeout(() => {
this.search()
- }, 250)
+ }, 250)
this.setInputWidth()
},
setInputWidth() {