ov-components: subscribe to vc directives in constructor

master
Carlos Santos 2025-02-07 17:13:59 +01:00
parent 8185324a0a
commit f785dfd7ad
1 changed files with 1 additions and 6 deletions

View File

@ -4,9 +4,7 @@ import {
Component,
ContentChild,
EventEmitter,
Input,
OnDestroy,
OnInit,
Output,
TemplateRef,
ViewChild
@ -67,7 +65,7 @@ import { LangOption } from '../../models/lang.model';
])
]
})
export class VideoconferenceComponent implements OnInit, OnDestroy, AfterViewInit {
export class VideoconferenceComponent implements OnDestroy, AfterViewInit {
// *** Toolbar ***
/**
* @internal
@ -384,9 +382,6 @@ export class VideoconferenceComponent implements OnInit, OnDestroy, AfterViewIni
private libService: OpenViduComponentsConfigService
) {
this.log = this.loggerSrv.get('VideoconferenceComponent');
}
ngOnInit() {
this.subscribeToVideconferenceDirectives();
}