Browse Source

Prettified Code!

pull/1886/head
gabek 5 years ago committed by GitHub Action
parent
commit
5ff5665652
  1. 12
      web/pages/viewer-info.tsx

12
web/pages/viewer-info.tsx

@ -124,12 +124,18 @@ export default function ViewersOverTime() {
</Row> </Row>
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" /> <Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
{online && {online && (
<div> <div>
<Table dataSource={clients} columns={columns} rowKey={row => row.clientID} /> <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> </div>
} )}
</> </>
); );
} }

Loading…
Cancel
Save