From e786f0356e90720821208b0472b18e4f5cecdff9 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Tue, 27 Apr 2021 13:33:20 -0400 Subject: [PATCH] LP1904036 Group details API call repair Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- Open-ILS/src/eg2/src/app/staff/circ/patron/group.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0