mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	Don’t remove OnInit
This commit is contained in:
		@@ -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) { }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user