Add a link to adding geo details about viewers

This commit is contained in:
Gabe Kangas
2021-03-05 01:01:31 -08:00
parent 6f6b4c0aa1
commit 582b234528

View File

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