From 6a63ceaecc816533eaaf37119b4f791d0c102c6f Mon Sep 17 00:00:00 2001 From: kuaifan Date: Sun, 28 Sep 2025 05:19:27 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BC=96=E8=BE=91=E5=99=A8=E5=BF=AB?= =?UTF-8?q?=E6=8D=B7=E9=94=AE=E4=BF=9D=E5=AD=98=E9=87=8D=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/assets/js/components/TEditor.vue | 8 -------- 1 file changed, 8 deletions(-) diff --git a/resources/assets/js/components/TEditor.vue b/resources/assets/js/components/TEditor.vue index d19f0b956..bb9356302 100755 --- a/resources/assets/js/components/TEditor.vue +++ b/resources/assets/js/components/TEditor.vue @@ -456,14 +456,6 @@ export default { this.submitNewContent(); } }); - editor.on('KeyDown', (e) => { - if (e.metaKey || e.ctrlKey) { - if (e.keyCode === 83) { - e.preventDefault(); - this.$emit('editorSave', e); - } - } - }); editor.on('Change', (e) => { if (this.editor !== null) { if (this.getContent() !== this.value) {