Skip to content
Snippets Groups Projects
Commit ac537368 authored by Sorin Davidoi's avatar Sorin Davidoi Committed by Eugen Rochko
Browse files

fix(status_list): Use correct keys for keyboard navigation (#4487)

parent 8c0e78ae
No related branches found
No related tags found
No related merge requests found
......@@ -105,7 +105,7 @@ export default class StatusList extends ImmutablePureComponent {
}
handleKeyDown = (e) => {
if (['PageDown', 'PageUp', 'End', 'Home'].includes(e.key)) {
if (['PageDown', 'PageUp'].includes(e.key) || (e.ctrlKey && ['End', 'Home'].includes(e.key))) {
const article = (() => {
switch (e.key) {
case 'PageDown':
......
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