ov-components: fix name getter in ParticipantModel to return participant's name

master
Carlos Santos 2025-05-26 18:51:59 +02:00
parent f0bcb3ac03
commit 395d0c3ade
1 changed files with 2 additions and 2 deletions

View File

@ -169,8 +169,8 @@ export class ParticipantModel {
* @returns string
*/
get name(): string | undefined {
// return this.participant.name;
return this.identity;
return this.participant.name;
// return this.identity;
}
/**