Merge branch 'master' into themes

This commit is contained in:
Alex Gleason 2020-05-30 17:43:58 -05:00
commit 170b436705
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -89,6 +89,7 @@ class ComposeForm extends ImmutablePureComponent {
handleKeyDown = (e) => {
if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) {
this.handleSubmit();
e.preventDefault(); // Prevent bubbling to other ComposeForm instances
}
}