ov-components: update parameter name for audio detection display in testapp

master
Carlos Santos 2025-05-20 12:51:19 +02:00
parent ffc6bb4c41
commit 3027ab6c5b
1 changed files with 2 additions and 2 deletions

View File

@ -127,8 +127,8 @@ export class CallComponent implements OnInit {
if (params['displayRoomName'] !== undefined) this.toolbarDisplayRoomName = params['displayRoomName'] === 'true'; if (params['displayRoomName'] !== undefined) this.toolbarDisplayRoomName = params['displayRoomName'] === 'true';
if (params['displayParticipantName'] !== undefined) if (params['displayParticipantName'] !== undefined)
this.streamDisplayParticipantName = params['displayParticipantName'] === 'true'; this.streamDisplayParticipantName = params['displayParticipantName'] === 'true';
if (params['streamDisplayAudioDetection'] !== undefined) if (params['displayAudioDetection'] !== undefined)
this.streamDisplayAudioDetection = params['streamDisplayAudioDetection'] === 'true'; this.streamDisplayAudioDetection = params['displayAudioDetection'] === 'true';
if (params['streamVideoControls'] !== undefined) this.streamVideoControls = params['streamVideoControls'] === 'true'; if (params['streamVideoControls'] !== undefined) this.streamVideoControls = params['streamVideoControls'] === 'true';
if (params['participantMuteBtn'] !== undefined) if (params['participantMuteBtn'] !== undefined)
this.participantPanelItemMuteButton = params['participantMuteBtn'] === 'true'; this.participantPanelItemMuteButton = params['participantMuteBtn'] === 'true';