Merge branch 'hotkey-navigation' into 'develop'

Partially fix hotkey navigation on timelines (up/down)

See merge request soapbox-pub/soapbox-fe!559
merge-requests/560/merge
Alex Gleason 3 years ago
commit c382eb086a

@ -217,6 +217,10 @@ export default class ScrollableList extends PureComponent {
);
}
setRef = c => {
this.node = c;
}
render() {
const { children, scrollKey, showLoading, isLoading, hasMore, prepend, alwaysPrepend, emptyMessage, onLoadMore } = this.props;
const childrenCount = React.Children.count(children);

Loading…
Cancel
Save