From 8666f663ba034b9232ce13153e92c9e02276fa20 Mon Sep 17 00:00:00 2001 From: shibao Date: Fri, 23 Feb 2024 22:31:51 -0500 Subject: [PATCH] Prevent possible additional submissions --- assets/js/ctrlenter.js | 3 +-- changelog.md | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/ctrlenter.js b/assets/js/ctrlenter.js index 95b3cda..cdde4d7 100644 --- a/assets/js/ctrlenter.js +++ b/assets/js/ctrlenter.js @@ -7,6 +7,5 @@ export default { } }) }, - mounted () { this.addFormSubmit(this) }, - updated () { this.addFormSubmit(this) } + mounted () { this.addFormSubmit(this) } } diff --git a/changelog.md b/changelog.md index a7ef1c1..41855f7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,6 @@ # v0.1.15 - Sanitize titles while they are being typed +- Prevent possible additional submissions - Fix content being displayed when blank # v0.1.14