couple small adjustments

This commit is contained in:
Jonas Winkler 2020-11-12 15:23:07 +01:00
parent 9956b7ff1b
commit aad279685f
3 changed files with 4 additions and 5 deletions

View File

@ -12,8 +12,8 @@
<table class="table table-sm table-hover table-borderless"> <table class="table table-sm table-hover table-borderless">
<thead> <thead>
<tr> <tr>
<th>Date created</th> <th>Created</th>
<th scope="col">Document</th> <th scope="col">Title</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>

View File

@ -49,7 +49,6 @@ export class DocumentDetailComponent implements OnInit {
private route: ActivatedRoute, private route: ActivatedRoute,
private correspondentService: CorrespondentService, private correspondentService: CorrespondentService,
private documentTypeService: DocumentTypeService, private documentTypeService: DocumentTypeService,
private datePipe: DatePipe,
private router: Router, private router: Router,
private modalService: NgbModal, private modalService: NgbModal,
private openDocumentService: OpenDocumentsService, private openDocumentService: OpenDocumentsService,

View File

@ -85,8 +85,8 @@
<th>Correspondent</th> <th>Correspondent</th>
<th>Title</th> <th>Title</th>
<th>Document type</th> <th>Document type</th>
<th>Date created</th> <th>Created</th>
<th>Date added</th> <th>Added</th>
</thead> </thead>
<tbody> <tbody>
<tr *ngFor="let d of docs.documents" routerLink="/documents/{{d.id}}"> <tr *ngFor="let d of docs.documents" routerLink="/documents/{{d.id}}">