Prettified Code!

This commit is contained in:
gabek 2021-03-05 09:02:10 +00:00 committed by GitHub Action
parent 582b234528
commit 5ff5665652

View file

@ -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>
}
)}
</>
);
}