Skip to content

Commit 037409d

Browse files
authored
fix(ui5-list): correct backward navigation with SHIFT+TAB (#193)
After the refactoring of the Pseudo events onsaptabprevious stopped working. It`s now replaced by _handleTabPrevious. FIXES: #192
1 parent 177de47 commit 037409d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/main/src/ListItemBase.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class ListItemBase extends WebComponent {
8181
}
8282
}
8383

84-
onsaptabprevious(event) {
84+
_handleTabPrevious(event) {
8585
const target = event.target.shadowRoot.activeElement;
8686

8787
if (this.shouldForwardTabBefore(target)) {

0 commit comments

Comments
 (0)