From 1f8493f43994cd3be66ffc414678b96d7cf85b8d Mon Sep 17 00:00:00 2001 From: NoobishSVK Date: Fri, 1 Mar 2024 14:33:02 +0100 Subject: [PATCH] chat bubble hotfix --- web/js/chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/chat.js b/web/js/chat.js index 3157e77..42d4d98 100644 --- a/web/js/chat.js +++ b/web/js/chat.js @@ -53,7 +53,7 @@ $(document).ready(function() { $('.chatbutton').click(function() { $('#chat-chatbox').scrollTop($('#chat-chatbox')[0].scrollHeight); chatMessageCount = 0; - $('#chat-messages-count').text(chatMessageCount); + $('.chat-messages-count').text(chatMessageCount); $('.chatbutton').removeClass('bg-color-4').addClass('bg-color-2'); $('#chat-send-message').focus(); });