Show Player name, not client, in mobile view. Fix #1659.

This commit is contained in:
Deluan 2023-04-05 22:48:33 -04:00
parent ecac74c2bd
commit 347424009d

View file

@ -28,7 +28,7 @@ const PlayerList = ({ permissions, ...props }) => {
> >
{isXsmall ? ( {isXsmall ? (
<SimpleList <SimpleList
primaryText={(r) => r.client} primaryText={(r) => r.name}
secondaryText={(r) => r.userName} secondaryText={(r) => r.userName}
tertiaryText={(r) => (r.maxBitRate ? r.maxBitRate : '-')} tertiaryText={(r) => (r.maxBitRate ? r.maxBitRate : '-')}
/> />