Don’t remove OnInit

This commit is contained in:
Michael Shamoon 2021-03-16 03:06:20 -07:00 committed by GitHub
parent b9d0954924
commit ee04a9226b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
import { Component, ElementRef, AfterViewChecked, ViewChild } from '@angular/core';
import { Component, ElementRef, OnInit, AfterViewChecked, ViewChild } from '@angular/core';
import { LogService } from 'src/app/services/rest/log.service';
@Component({
@ -6,7 +6,7 @@ import { LogService } from 'src/app/services/rest/log.service';
templateUrl: './logs.component.html',
styleUrls: ['./logs.component.scss']
})
export class LogsComponent implements AfterViewChecked {
export class LogsComponent implements OnInit, AfterViewChecked {
constructor(private logService: LogService) { }