fix an auto-complete bug for mentions

Этот коммит содержится в:
JoramWilander
2015-06-17 12:25:41 -04:00
родитель 5a8f839716
Коммит 20ead3585d

Просмотреть файл

@@ -204,7 +204,7 @@ module.exports = React.createClass({
// If there is a space after the last @, nothing to do.
if (lastSpace > atIndex || lastCharSpace > atIndex) {
this.setState({ mentionText: '-1' });
this.updateMentionTab('-1', null);
return;
}