Update CommandInputBar.vue

This commit is contained in:
Baobhan Sith
2025-04-19 18:51:26 +08:00
parent 57dcece55b
commit 6b1de91068
@@ -84,8 +84,10 @@ watch(searchTerm, (newValue) => {
v-model="searchTerm"
:placeholder="t('commandInputBar.searchPlaceholder')"
class="search-input"
@keydown.enter="findNext"
@keydown.shift.enter="findPrevious"
@keydown.enter.prevent="findNext"
@keydown.shift.enter.prevent="findPrevious"
@keydown.up.prevent="findPrevious"
@keydown.down.prevent="findNext"
ref="searchInputRef"
/>