mirror of https://github.com/tootsuite/mastodon
fix(status_list): Use correct keys for keyboard navigation (#4487)
parent
8c0e78ae43
commit
ac53736814
|
@ -105,7 +105,7 @@ export default class StatusList extends ImmutablePureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
handleKeyDown = (e) => {
|
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 = (() => {
|
const article = (() => {
|
||||||
switch (e.key) {
|
switch (e.key) {
|
||||||
case 'PageDown':
|
case 'PageDown':
|
||||||
|
|
Loading…
Reference in New Issue