Fix keyboard navigation in scrollable lists (#14348)

Fixes #14347
master
ThibG 4 years ago committed by GitHub
parent 17b1d71536
commit 98f6380dee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/javascript/mastodon/components/scrollable_list.js

@ -20,7 +20,7 @@ const mapStateToProps = (state, { scrollKey }) => {
};
};
export default @connect(mapStateToProps)
export default @connect(mapStateToProps, null, null, { forwardRef: true })
class ScrollableList extends PureComponent {
static contextTypes = {

Loading…
Cancel
Save