From afa6eee0393cc041b41c3d28458f63e1b930181d Mon Sep 17 00:00:00 2001 From: supertiger Date: Wed, 20 Feb 2019 09:36:07 +0000 Subject: [PATCH] fixed message counter not resetting --- src/components/app/RightPanel.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/app/RightPanel.vue b/src/components/app/RightPanel.vue index 7d567dc..66da7c3 100644 --- a/src/components/app/RightPanel.vue +++ b/src/components/app/RightPanel.vue @@ -87,6 +87,7 @@ export default { if (this.message.length > 5000) return; clearInterval(this.postTimerID); this.postTimerID = null; + this.messageLength = 0; const msg = this.message; const tempID = this.generateNum(25);