Use unique clientID as the row key. Closes https://github.com/owncast/owncast/issues/452
This commit is contained in:
@@ -120,7 +120,7 @@ export default function ViewersOverTime() {
|
|||||||
/>
|
/>
|
||||||
</Row>
|
</Row>
|
||||||
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
|
<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>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user