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=e786f0356e90720821208b0472b18e4f5cecdff9;p=Evergreen.git LP1904036 Group details API call repair 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/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;