Browse Source

Use unique clientID as the row key. Closes https://github.com/owncast/owncast/issues/452

pull/1886/head
Gabe Kangas 5 years ago
parent
commit
69f8efba94
  1. 2
      web/pages/viewer-info.tsx

2
web/pages/viewer-info.tsx

@ -120,7 +120,7 @@ export default function ViewersOverTime() { @@ -120,7 +120,7 @@ export default function ViewersOverTime() {
/>
</Row>
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
<Table dataSource={clients} columns={columns} rowKey={(row) => row.userAgent} />
<Table dataSource={clients} columns={columns} rowKey={(row) => row.clientID} />
</div>
);
}

Loading…
Cancel
Save