mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 06:46:01 +03:00
Add user count to user table headings
This commit is contained in:
parent
3872b0bf13
commit
1cde33ca03
1 changed files with 2 additions and 2 deletions
|
@ -79,10 +79,10 @@ export default function ChatUsers() {
|
|||
{connectedUsers}
|
||||
<br />
|
||||
<br />
|
||||
<Title>Banned Users</Title>
|
||||
<Title>Banned Users {online ? `(${disabledUsers.length})` : null}</Title>
|
||||
<UserTable data={disabledUsers} />
|
||||
|
||||
<Title>Moderators</Title>
|
||||
<Title>Moderators {online ? `(${moderators.length})` : null}</Title>
|
||||
<UserTable data={moderators} />
|
||||
</>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue