From: Bill Erickson Date: Tue, 27 Apr 2021 17:33:20 +0000 (-0400) Subject: LP1904036 Group details API call repair X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6b00cee4c92658303a619d6c9fa6bc9e28cbdc38;p=working%2FEvergreen.git LP1904036 Group details API call repair Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/group.component.ts b/Open-ILS/src/eg2/src/app/staff/circ/patron/group.component.ts index 33435ed4b2..a62a153f23 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/group.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/group.component.ts @@ -78,7 +78,7 @@ export class PatronGroupComponent implements OnInit { {authoritative: true}) .pipe(concatMap(u => { - const promise = this.patronService.getVitalStats(u.id()) + const promise = this.patronService.getVitalStats(u) .then(stats => { this.totalOwed += stats.fines.balance_owed; this.totalOut += stats.checkouts.total_out;