From 0a1927e4f27b09284d75b6395f679707fe4713fc Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 13 Aug 2022 11:11:56 +0200 Subject: [PATCH] cosmetic changes to chat --- files/assets/js/chat.js | 4 ++-- files/templates/chat.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/files/assets/js/chat.js b/files/assets/js/chat.js index 311c9f7fd..cfa88707d 100644 --- a/files/assets/js/chat.js +++ b/files/assets/js/chat.js @@ -121,8 +121,8 @@ socket.on('online', function(data){ let online2 = 'Users online right now' for (const u of data) { - online += `
  • ${u}
  • ` - online2 += `
    ${u}` + online += `
  • @${u}
  • ` + online2 += `
    @${u}` } document.getElementById('online').innerHTML = online document.getElementById('online2').setAttribute("data-bs-original-title", online2); diff --git a/files/templates/chat.html b/files/templates/chat.html index 3b7dd03e3..78d97ee4e 100644 --- a/files/templates/chat.html +++ b/files/templates/chat.html @@ -201,7 +201,7 @@ - + {% include "emoji_modal.html" %} {% include "expanded_image_modal.html" %}