mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-23 12:39:59 +01:00
Revert "fix: validate post's text with Ctrl+Enter on PC."
This reverts commit fac686830584b572710f39f6b29cef71dc015e29.
This commit is contained in:
parent
4d58a86b4b
commit
0ac1f49c51
@ -209,7 +209,7 @@ export default Vue.extend({
|
||||
},
|
||||
|
||||
onKeydown(e) {
|
||||
if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey) && canPost) this.post();
|
||||
if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey)) this.post();
|
||||
},
|
||||
|
||||
onPaste(e) {
|
||||
|
Loading…
Reference in New Issue
Block a user