Merge pull request #384 from aviraldg/fix-composer-up-down

fix: allow up/down normally for no completions
This commit is contained in:
David Baker 2016-08-03 13:55:13 +01:00 committed by GitHub
commit efdcc6da98
2 changed files with 10 additions and 8 deletions

View file

@ -497,18 +497,14 @@ export default class MessageComposerInput extends React.Component {
}
onUpArrow(e) {
if(this.props.onUpArrow) {
if(this.props.onUpArrow()) {
e.preventDefault();
}
if (this.props.onUpArrow && this.props.onUpArrow()) {
e.preventDefault();
}
}
onDownArrow(e) {
if(this.props.onDownArrow) {
if(this.props.onDownArrow()) {
e.preventDefault();
}
if (this.props.onDownArrow && this.props.onDownArrow()) {
e.preventDefault();
}
}