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]) => {