This commit is contained in:
Joe Milazzo 2023-11-20 07:03:34 -06:00 committed by GitHub
parent 1d261a5a7c
commit 65ccdc7301
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 375 additions and 590 deletions

View file

@ -140,11 +140,12 @@ export class NavHeaderComponent implements OnInit {
}
goToOther(field: FilterField, value: string) {
this.goTo({field, comparison: FilterComparison.Equal, value});
this.goTo({field, comparison: FilterComparison.Equal, value: value + ''});
}
goToPerson(role: PersonRole, filter: any) {
this.clearSearch();
filter = filter + '';
switch(role) {
case PersonRole.Writer:
this.goTo({field: FilterField.Writers, comparison: FilterComparison.Equal, value: filter});