Fix metaKey usage

This commit is contained in:
Eugen Rochko 2016-12-11 23:54:32 +01:00
parent 73c142fb94
commit 6e7e97c849
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ const ComposeForm = React.createClass({
},
handleKeyUp (e) {
if (e.keyCode === 13 && (e.ctrlKey || (e.metaKey && e.metaKey === '⌘-'))) {
if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) {
this.props.onSubmit();
}
},