fix(participants-list) Show participants with empty names (#10353)

This commit is contained in:
Robert Pintilii 2021-11-11 14:48:15 +02:00 committed by GitHub
parent a96a4ea336
commit eec8b9e58e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class MeetingParticipantList extends PureComponent<Props, State> {
const { _localParticipant, _remoteParticipants } = this.props;
const { searchString } = this.state;
const participant = item === _localParticipant?.id ? _localParticipant : _remoteParticipants.get(item);
const displayName = participant?.name;
const displayName = participant?.name || '';
if (displayName) {
const names = normalizeAccents(displayName)