mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-04 21:43:08 +02:00
Update post-form.vue
This commit is contained in:
parent
29b1aa0d9b
commit
69593994ef
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
onKeydown(e) {
|
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) && this.canPost) this.post();
|
||||||
},
|
},
|
||||||
|
|
||||||
onPaste(e) {
|
onPaste(e) {
|
||||||
|
|
Loading…
Reference in a new issue