From 3a0b1918c4efe3a764cf8307cf45eae1f325dd14 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Mon, 19 Feb 2024 11:59:43 +0300 Subject: [PATCH] Fixed #4906 - Listbox: issue with navigating through list items using tab and enter buttons --- components/lib/listbox/Listbox.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/lib/listbox/Listbox.vue b/components/lib/listbox/Listbox.vue index 5f6ea7447..97b62dc2a 100755 --- a/components/lib/listbox/Listbox.vue +++ b/components/lib/listbox/Listbox.vue @@ -500,8 +500,6 @@ export default { if (this.multiple && event.shiftKey) this.onOptionSelectRange(event, this.focusedOptionIndex); else this.onOptionSelect(event, this.visibleOptions[this.focusedOptionIndex]); } - - event.preventDefault(); }, onSpaceKey(event) { this.onEnterKey(event);