Skip to content

Commit e9c5287

Browse files
authored
fix(ui5-list): preventing space keydown (#4088)
Preventing the Space key on keydown is redundant since it should be already handled in its children separately. Fixes: #4049
1 parent 39fa58a commit e9c5287

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/main/src/List.js

-3
Original file line numberDiff line numberDiff line change
@@ -734,9 +734,6 @@ class List extends UI5Element {
734734
}
735735

736736
_onkeydown(event) {
737-
if (isSpace(event)) {
738-
event.preventDefault(); // prevent scroll
739-
}
740737
if (isTabNext(event)) {
741738
this._handleTabNext(event);
742739
}

0 commit comments

Comments
 (0)