Skip to content

Commit

Permalink
fix(Listbox): filter doesn't navigate left/right within input (#1409)
Browse files Browse the repository at this point in the history
  • Loading branch information
joris-gallot authored Nov 1, 2024
1 parent adb96cd commit 762f451
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/radix-vue/src/Listbox/ListboxFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ onMounted(() => {
:disabled="rootContext.disabled.value ? '' : undefined"
:data-disabled="rootContext.disabled.value ? '' : undefined"
type="text"
@keydown.down.up.left.right.home.end.prevent="rootContext.onKeydownNavigation"
@keydown.down.up.home.end.prevent="rootContext.onKeydownNavigation"
@keydown.enter="rootContext.onKeydownEnter"
@input="(event: InputEvent) => {
modelValue = (event.target as HTMLInputElement).value
Expand Down

0 comments on commit 762f451

Please # to comment.