From a8ff518b658c3fc4efe983b497b5ec6db5bae77e Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 31 Oct 2024 20:50:22 +0200 Subject: [PATCH] Add a space to message counter --- public/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/script.js b/public/script.js index 6cd0b00e6..9c184b64c 100644 --- a/public/script.js +++ b/public/script.js @@ -7081,7 +7081,7 @@ async function displayChats(searchQuery, currentChat, displayName, avatarImg, se template.find('.avatar img').attr('src', avatarImg); template.find('.select_chat_block_filename').text(chat.file_name); template.find('.chat_file_size').text(`(${chat.file_size},`); - template.find('.chat_messages_num').text(`${chat.message_count}💬)`); + template.find('.chat_messages_num').text(`${chat.message_count} 💬)`); template.find('.select_chat_block_mes').text(chat.preview_message); template.find('.PastChat_cross').attr('file_name', chat.file_name); template.find('.chat_messages_date').text(timestampToMoment(chat.last_mes).format('lll'));