From: Bill Erickson Date: Wed, 16 Feb 2022 14:02:08 +0000 (-0500) Subject: LP1904036 Patron bills Full Details action X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4ed8a8a9999d0f24760f73d761e33fbbc5d1b197;p=Evergreen.git LP1904036 Patron bills Full Details action Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/bills.component.html b/Open-ILS/src/eg2/src/app/staff/circ/patron/bills.component.html index df0b41e1d6..7e5a27bc7d 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/bills.component.html +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/bills.component.html @@ -189,6 +189,10 @@ + + + diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/bills.component.ts b/Open-ILS/src/eg2/src/app/staff/circ/patron/bills.component.ts index 6331551f67..b1252850cd 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/bills.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/bills.component.ts @@ -621,6 +621,7 @@ export class BillsComponent implements OnInit, AfterViewInit { } showStatement(row: any) { + if (!row) { return; } this.router.navigate(['/staff/circ/patron', this.patronId, 'bills', row.id, 'statement']); }