forked from rDrama/rDrama
1
0
Fork 0

change chat default to 1

master
Aevann1 2022-08-16 18:19:44 +02:00
parent 026d023c43
commit f52c20202f
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@
<a class="nav-link position-relative" href="/chat"> <a class="nav-link position-relative" href="/chat">
<i class="fas fa-messages" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Chat"></i> <i class="fas fa-messages" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Chat"></i>
<b class="text-lg" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Users in chat right now"> <b class="text-lg" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Users in chat right now">
{{cache.get(ONLINE_STR) or 0}} {{cache.get(ONLINE_STR) or 1}}
</b> </b>
</a> </a>
</li> </li>

View File

@ -51,7 +51,7 @@
<button class="col px-0 btn btn-dead m-0 pt-0" style="background: None !important; border: None;"> <button class="col px-0 btn btn-dead m-0 pt-0" style="background: None !important; border: None;">
<a href="/chat" class="text-decoration-none" role="button"> <a href="/chat" class="text-decoration-none" role="button">
<div class="text-center {% if request.path=='/chat' %}text-primary{% else %}text-muted{% endif %}"> <div class="text-center {% if request.path=='/chat' %}text-primary{% else %}text-muted{% endif %}">
<b class="text-lg" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Users in chat right now">{{cache.get(ONLINE_STR) or 0}}</b> <b class="text-lg" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Users in chat right now">{{cache.get(ONLINE_STR) or 1}}</b>
<div class="text-small">Chat</div> <div class="text-small">Chat</div>
</div> </div>
</a> </a>