fix(participants-list) Show participants with empty names (#10353)
This commit is contained in:
parent
a96a4ea336
commit
eec8b9e58e
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue