Only show online client count if we are online. closes https://github.com/owncast/owncast/issues/1306

This commit is contained in:
Gabe Kangas 2021-08-12 23:51:13 -07:00
parent ad59d6ebda
commit 1e436bdb67

View file

@ -64,9 +64,10 @@ export default function ChatUsers() {
When a stream is active and chat is enabled, connected chat clients will be displayed here.
</p>
);
return (
<>
<Title>Connected Chat Participants ({clients.length})</Title>
<Title>Connected Chat Participants {online ? `(${clients.length})` : null}</Title>
{connectedUsers}
<br />
<br />