Skip to content
Snippets Groups Projects
Unverified Commit fb7c4ee2 authored by rinsuki's avatar rinsuki Committed by GitHub
Browse files

チャットでCmd+Enterできないのを修正 (#6614)

parent e93c06cd
No related branches found
No related tags found
No related merge requests found
......@@ -151,7 +151,7 @@ export default Vue.extend({
},
onKeypress(e) {
if ((e.which == 10 || e.which == 13) && e.ctrlKey && this.canSend) {
if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey) && this.canSend) {
this.send();
}
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment