Merge branch 'hotkey-navigation' into 'develop'
Partially fix hotkey navigation on timelines (up/down) See merge request soapbox-pub/soapbox-fe!559
This commit is contained in:
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…
Reference in New Issue