Add a space to message counter

This commit is contained in:
Cohee 2024-10-31 20:50:22 +02:00
parent 47b7745ceb
commit a8ff518b65
1 changed files with 1 additions and 1 deletions

View File

@ -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'));