From 315c263187098d9e9285acf1589dc015d6f9fb5e Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Thu, 11 Sep 2025 18:03:55 +0200 Subject: [PATCH] frontend: updateov components participant service references --- .../src/lib/pages/meeting/meeting.component.scss | 2 +- .../src/lib/pages/meeting/meeting.component.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.scss b/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.scss index 1ded13b..750ba83 100644 --- a/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.scss +++ b/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.scss @@ -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; diff --git a/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.ts b/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.ts index e2a7c5d..42708e7 100644 --- a/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.ts +++ b/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.ts @@ -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]) => {