openvidu-components: Implements AfterViewInit in prejoin component

pull/739/head
csantosm 2022-06-09 16:06:51 +02:00
parent ac5700cd95
commit bba03ec8a0
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { Component, HostListener, OnDestroy, OnInit, Output, EventEmitter, ViewChild } from '@angular/core'; import { Component, HostListener, OnDestroy, OnInit, Output, EventEmitter, ViewChild, AfterViewInit } from '@angular/core';
import { MatMenuTrigger } from '@angular/material/menu'; import { MatMenuTrigger } from '@angular/material/menu';
import { MatSelect } from '@angular/material/select'; import { MatSelect } from '@angular/material/select';
@ -28,7 +28,7 @@ import { VirtualBackgroundService } from '../../services/virtual-background/virt
templateUrl: './pre-join.component.html', templateUrl: './pre-join.component.html',
styleUrls: ['./pre-join.component.css'] styleUrls: ['./pre-join.component.css']
}) })
export class PreJoinComponent implements OnInit, OnDestroy { export class PreJoinComponent implements OnInit, OnDestroy, AfterViewInit {
/** /**
* @ignore * @ignore
*/ */