1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-19 05:22:13 +03:00

Merge pull request #1295 from matrix-org/luke/fix-emoji-picker-gone

preventDefault when moving autocomplete selection with vertical arrow
This commit is contained in:
Luke Barnard
2017-08-14 16:37:32 +01:00
committed by GitHub

View File

@@ -890,6 +890,7 @@ export default class MessageComposerInput extends React.Component {
} }
} else { } else {
this.moveAutocompleteSelection(up); this.moveAutocompleteSelection(up);
e.preventDefault();
} }
}; };