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; text-align: center;
background-color: var(--ov-meet-color-error) !important; 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; border-radius: var(--ov-meet-radius-md) !important;
width: 65px !important; width: 65px !important;
margin: 0px !important; margin: 0px !important;

View File

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