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

This commit is contained in:
rinsuki 2020-08-01 21:50:21 +09:00 committed by GitHub
parent b3221644d4
commit 8831ae8b32

View file

@ -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();
}
},