mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-27 23:43:09 +02:00
Update post-form.vue
This commit is contained in:
parent
ae68e6372c
commit
9bb02e5bf6
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ export default define({
|
||||||
this.save();
|
this.save();
|
||||||
},
|
},
|
||||||
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.posting && this.text) this.post();
|
||||||
},
|
},
|
||||||
post() {
|
post() {
|
||||||
this.posting = true;
|
this.posting = true;
|
||||||
|
|
Loading…
Reference in a new issue