frontend: updateov components participant service references

This commit is contained in:
Carlos Santos 2025-09-11 18:03:55 +02:00
parent ef31b9bada
commit 315c263187
2 changed files with 4 additions and 4 deletions

View File

@ -298,7 +298,7 @@
}
text-align: center;
background-color: var(--ov-meet-color-error) !important;
color: var(--ov-meet-text-on-primary);
color: #fff !important;
border-radius: var(--ov-meet-radius-md) !important;
width: 65px !important;
margin: 0px !important;

View File

@ -122,7 +122,7 @@ export class MeetingComponent implements OnInit {
protected sessionStorageService: SessionStorageService,
protected wcManagerService: WebComponentManagerService,
protected openviduService: OpenViduService,
protected componentParticipantService: ComponentParticipantService,
protected ovComponentsParticipantService: ComponentParticipantService,
protected navigationService: NavigationService,
protected notificationService: NotificationService,
protected clipboard: Clipboard
@ -275,8 +275,8 @@ export class MeetingComponent implements OnInit {
this.showMeeting = true;
combineLatest([
this.componentParticipantService.remoteParticipants$,
this.componentParticipantService.localParticipant$
this.ovComponentsParticipantService.remoteParticipants$,
this.ovComponentsParticipantService.localParticipant$
])
.pipe(takeUntil(this.destroy$))
.subscribe(([participants, local]) => {