Skip to content

Commit

Permalink
ELEMENTS:1750-Fix nuxeo-data-list arrow key navigation highlighting 2…
Browse files Browse the repository at this point in the history
… docs
  • Loading branch information
yashgupta-hyland committed Feb 5, 2025
1 parent 5b932fc commit 6827c01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/nuxeo-data-list/nuxeo-data-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,14 +222,14 @@ import { PageProviderDisplayBehavior } from '../nuxeo-page-provider-display-beha
switch (e.key) {
case 'ArrowUp':
case 'Up':
this._select(-1, 1);
this._select(-1, 0);
break;
case 'k':
this._select(-1, 0);
break;
case 'ArrowDown':
case 'Down':
this._select(1, -1);
this._select(1, 0);
break;
case 'j':
this._select(1, 0);
Expand Down

0 comments on commit 6827c01

Please sign in to comment.