forked from treehouse/mastodon
Fix metaKey usage
parent
73c142fb94
commit
6e7e97c849
|
@ -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();
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue