Browse Source

Add a link to adding geo details about viewers

pull/1886/head
Gabe Kangas 5 years ago
parent
commit
582b234528
  1. 7
      web/pages/viewer-info.tsx

7
web/pages/viewer-info.tsx

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

Loading…
Cancel
Save