diff options
| author | momf <m0fqn090310@gmail.com> | 2018-06-06 09:46:33 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-06 09:46:33 +0900 |
| commit | fac686830584b572710f39f6b29cef71dc015e29 (patch) | |
| tree | eda41bd561e3decebdcb77b7f70a0dc2b12d69da /src/client | |
| parent | Update README.md (diff) | |
| download | misskey-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')
| -rw-r--r-- | src/client/app/desktop/views/components/post-form.vue | 2 |
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) { |