Allow filtering by document metadata

This commit is contained in:
Michael Shamoon
2022-03-27 00:08:08 -07:00
parent b67b2f04d9
commit 22a90363f6
8 changed files with 20 additions and 5 deletions

View File

@@ -23,7 +23,7 @@
<div class="card-body p-2">
<p class="card-text">
<ng-container *ngIf="document.correspondent">
<a [routerLink]="[]" title="Filter by correspondent" i18n-title (click)="clickCorrespondent.emit(document.correspondent);$event.stopPropagation()" class="fw-bold btn-link">{{(document.correspondent$ | async)?.name}}</a>:
<a title="Filter by correspondent" i18n-title (click)="clickCorrespondent.emit(document.correspondent);$event.stopPropagation()" class="fw-bold btn-link">{{(document.correspondent$ | async)?.name}}</a>:
</ng-container>
{{document.title | documentTitle}}
</p>

View File

@@ -76,3 +76,7 @@
text-align: left !important;
font-size: 90%;
}
a {
cursor: pointer;
}