preventDefault when moving autocomplete selection with vertical arrow

Otherwise the composer selection updates, in turn hiding the autocomplete box - fixes vector-im/riot-web#4790
pull/21833/head
Luke Barnard 2017-08-14 15:16:13 +01:00
parent 02217c8bd2
commit 9742962d61
1 changed files with 1 additions and 0 deletions

View File

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