Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1295 from matrix-org/luke/fix-emoji-picker-gone
Browse files Browse the repository at this point in the history
preventDefault when moving autocomplete selection with vertical arrow
  • Loading branch information
lukebarnard1 committed Aug 14, 2017
2 parents e48c491 + 9742962 commit 7d10a75
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/views/rooms/MessageComposerInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,7 @@ export default class MessageComposerInput extends React.Component {
}
} else {
this.moveAutocompleteSelection(up);
e.preventDefault();
}
};

Expand Down

0 comments on commit 7d10a75

Please sign in to comment.