mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Don’t remove OnInit
This commit is contained in:
parent
b9d0954924
commit
ee04a9226b
@ -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';
|
import { LogService } from 'src/app/services/rest/log.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -6,7 +6,7 @@ import { LogService } from 'src/app/services/rest/log.service';
|
|||||||
templateUrl: './logs.component.html',
|
templateUrl: './logs.component.html',
|
||||||
styleUrls: ['./logs.component.scss']
|
styleUrls: ['./logs.component.scss']
|
||||||
})
|
})
|
||||||
export class LogsComponent implements AfterViewChecked {
|
export class LogsComponent implements OnInit, AfterViewChecked {
|
||||||
|
|
||||||
constructor(private logService: LogService) { }
|
constructor(private logService: LogService) { }
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user