mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 06:46:01 +03:00
Prettified Code!
This commit is contained in:
parent
582b234528
commit
5ff5665652
1 changed files with 9 additions and 3 deletions
|
@ -124,12 +124,18 @@ export default function ViewersOverTime() {
|
|||
</Row>
|
||||
|
||||
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
|
||||
{online &&
|
||||
{online && (
|
||||
<div>
|
||||
<Table dataSource={clients} columns={columns} rowKey={row => row.clientID} />
|
||||
<p><Typography.Text type="disabled">Visit the <a href="https://owncast.online/docs/viewers/?source=admin">documentation</a> to configure additional details bout your viewers.</Typography.Text> </p>
|
||||
<p>
|
||||
<Typography.Text type="disabled">
|
||||
Visit the{' '}
|
||||
<a href="https://owncast.online/docs/viewers/?source=admin">documentation</a> to
|
||||
configure additional details bout your viewers.
|
||||
</Typography.Text>{' '}
|
||||
</p>
|
||||
</div>
|
||||
}
|
||||
)}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue