Browse Source

Fix keyboard navigation in scrollable lists (#14348)

Fixes #14347
master
ThibG 3 years ago
committed by GitHub
parent
commit
98f6380dee
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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 View File

@ -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