Doc detail tab switch fixes

This commit is contained in:
shamoon 2023-04-28 08:14:24 -07:00
parent fe85aff052
commit b7c7e293f7
2 changed files with 5 additions and 1 deletions

View File

@ -100,7 +100,7 @@
<a ngbNavLink i18n>Metadata</a> <a ngbNavLink i18n>Metadata</a>
<ng-template ngbNavContent> <ng-template ngbNavContent>
<table class="table table-borderless"> <table class="table table-borderless" *ngIf="document">
<tbody> <tbody>
<tr> <tr>
<td i18n>Date modified</td> <td i18n>Date modified</td>

View File

@ -317,6 +317,10 @@ export class DocumentDetailComponent
if (navIDKey) { if (navIDKey) {
this.activeNavID = DocumentDetailNavIDs[navIDKey] this.activeNavID = DocumentDetailNavIDs[navIDKey]
} }
} else if (paramMap.get('id')) {
this.router.navigate(['documents', +paramMap.get('id'), 'details'], {
replaceUrl: true,
})
} }
}) })
} }