Update post-form.vue
This commit is contained in:
parent
29b1aa0d9b
commit
69593994ef
|
@ -244,7 +244,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) && this.canPost) this.post();
|
||||
},
|
||||
|
||||
onPaste(e) {
|
||||
|
|
Loading…
Reference in New Issue