mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	codestyle
This commit is contained in:
		| @@ -12,7 +12,7 @@ import { DocumentTypeEditDialogComponent } from './document-type-edit-dialog/doc | ||||
|   templateUrl: './document-type-list.component.html', | ||||
|   styleUrls: ['./document-type-list.component.scss'] | ||||
| }) | ||||
| export class DocumentTypeListComponent extends GenericListComponent<PaperlessDocumentType> { | ||||
| export class DocumentTypeListComponent extends GenericListComponent<PaperlessDocumentType> implements OnInit { | ||||
|  | ||||
|   constructor(service: DocumentTypeService, modalService: NgbModal, private titleService: Title) { | ||||
|     super(service, modalService, DocumentTypeEditDialogComponent) | ||||
|   | ||||
| @@ -1,6 +1,5 @@ | ||||
| import { Component, OnInit } from '@angular/core'; | ||||
| import { Title } from '@angular/platform-browser'; | ||||
| import { kMaxLength } from 'buffer'; | ||||
| import { LOG_LEVELS, LOG_LEVEL_INFO, PaperlessLog } from 'src/app/data/paperless-log'; | ||||
| import { LogService } from 'src/app/services/rest/log.service'; | ||||
| import { environment } from 'src/environments/environment'; | ||||
|   | ||||
| @@ -1,10 +1,9 @@ | ||||
| import { Component } from '@angular/core'; | ||||
| import { Component, OnInit } from '@angular/core'; | ||||
| import { Title } from '@angular/platform-browser'; | ||||
| import { NgbModal } from '@ng-bootstrap/ng-bootstrap'; | ||||
| import { TAG_COLOURS, PaperlessTag } from 'src/app/data/paperless-tag'; | ||||
| import { TagService } from 'src/app/services/rest/tag.service'; | ||||
| import { environment } from 'src/environments/environment'; | ||||
| import { CorrespondentEditDialogComponent } from '../correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component'; | ||||
| import { GenericListComponent } from '../generic-list/generic-list.component'; | ||||
| import { TagEditDialogComponent } from './tag-edit-dialog/tag-edit-dialog.component'; | ||||
|  | ||||
| @@ -13,7 +12,7 @@ import { TagEditDialogComponent } from './tag-edit-dialog/tag-edit-dialog.compon | ||||
|   templateUrl: './tag-list.component.html', | ||||
|   styleUrls: ['./tag-list.component.scss'] | ||||
| }) | ||||
| export class TagListComponent extends GenericListComponent<PaperlessTag> { | ||||
| export class TagListComponent extends GenericListComponent<PaperlessTag> implements OnInit { | ||||
|  | ||||
|   constructor(tagService: TagService, modalService: NgbModal, private titleService: Title) { | ||||
|     super(tagService, modalService, TagEditDialogComponent) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 jonaswinkler
					jonaswinkler