goToProfile: 'g u',
goToBlocked: 'g b',
goToMuted: 'g m',
+ goToRequests: 'g r',
toggleHidden: 'x',
};
this.context.router.history.push('/mutes');
}
+ handleHotkeyGoToRequests = () => {
+ this.context.router.history.push('/follow_requests');
+ }
+
render () {
const { draggingOver } = this.state;
const { children, isComposing, location, dropdownMenuIsOpen } = this.props;
goToProfile: this.handleHotkeyGoToProfile,
goToBlocked: this.handleHotkeyGoToBlocked,
goToMuted: this.handleHotkeyGoToMuted,
+ goToRequests: this.handleHotkeyGoToRequests,
};
return (