Merge pull request #333 from omnivore-app/fix/arrow-description

Fix docs for arrow navigation in keyboard controls
This commit is contained in:
Jackson Harper 2022-03-28 15:18:42 -07:00 committed by GitHub
commit 6e535c7f75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -161,13 +161,13 @@ export function libraryListCommands(
{
shortcutKeys: ['arrowdown'],
actionDescription: 'Move cursor to the next row',
shortcutKeyDescription: 'v',
shortcutKeyDescription: 'Arrow Down',
callback: () => actionHandler('moveFocusToNextRowItem'),
},
{
shortcutKeys: ['arrowup'],
actionDescription: 'Move cursor to the previous row',
shortcutKeyDescription: 'f',
shortcutKeyDescription: 'Arrow Up',
callback: () => actionHandler('moveFocusToPreviousRowItem'),
}
]