Skip to content
Snippets Groups Projects
Unverified Commit c7f6ca43 authored by Jed Fox's avatar Jed Fox Committed by GitHub
Browse files

Fix j/k shortcuts to move between transactions on account pages (#939)

parent 36b2d7d0
No related branches found
No related tags found
No related merge requests found
...@@ -1129,14 +1129,14 @@ export function useTableNavigator(data, fields) { ...@@ -1129,14 +1129,14 @@ export function useTableNavigator(data, fields) {
switch (e.key) { switch (e.key) {
case 'ArrowUp': case 'ArrowUp':
case 'K': case 'k':
if (e.target.tagName !== 'INPUT') { if (e.target.tagName !== 'INPUT') {
onMove('up'); onMove('up');
} }
break; break;
case 'ArrowDown': case 'ArrowDown':
case 'J': case 'j':
if (e.target.tagName !== 'INPUT') { if (e.target.tagName !== 'INPUT') {
onMove('down'); onMove('down');
} }
......
---
category: Bugfix
authors: [j-f1]
---
Fix j/k shortcuts to move between transactions on account pages
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment