Browse Source

Fix keyboard navigation in scrollable lists (#14348)

Fixes #14347
ThibG 3 years ago
parent
commit
98f6380dee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/javascript/mastodon/components/scrollable_list.js

+ 1 - 1
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 = {