summaryrefslogtreecommitdiff
path: root/src/client/app
diff options
context:
space:
mode:
authormomf <m0fqn090310@gmail.com>2018-06-06 09:46:33 +0900
committerGitHub <noreply@github.com>2018-06-06 09:46:33 +0900
commitfac686830584b572710f39f6b29cef71dc015e29 (patch)
treeeda41bd561e3decebdcb77b7f70a0dc2b12d69da /src/client/app
parentUpdate README.md (diff)
downloadmisskey-fac686830584b572710f39f6b29cef71dc015e29.tar.gz
misskey-fac686830584b572710f39f6b29cef71dc015e29.tar.bz2
misskey-fac686830584b572710f39f6b29cef71dc015e29.zip
fix: validate post's text with Ctrl+Enter on PC.
Diffstat (limited to 'src/client/app')
-rw-r--r--src/client/app/desktop/views/components/post-form.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/post-form.vue b/src/client/app/desktop/views/components/post-form.vue
index 7b2adfe707..ac9b7bcede 100644
--- a/src/client/app/desktop/views/components/post-form.vue
+++ b/src/client/app/desktop/views/components/post-form.vue
@@ -209,7 +209,7 @@ export default Vue.extend({
},
onKeydown(e) {
- if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey)) this.post();
+ if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey) && canPost) this.post();
},
onPaste(e) {