mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
fix: validate post's text with Ctrl+Enter on PC.
This commit is contained in:
parent
143b032ad6
commit
3d3277f581
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue