From: Bill Erickson Date: Tue, 12 Apr 2022 16:51:05 +0000 (-0400) Subject: LP1904036 Pending patron shows actor.addr_alerts X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=dc0c3730f73d3f45d973e121303870a17b971967;p=Evergreen.git LP1904036 Pending patron shows actor.addr_alerts 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/edit.component.ts b/Open-ILS/src/eg2/src/app/staff/circ/patron/edit.component.ts index d94f514bb7..43143979b3 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/edit.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/edit.component.ts @@ -502,6 +502,8 @@ export class EditComponent implements OnInit, AfterViewInit { this.patron.addresses().forEach(addr => { promise = promise.then(__ => this.dupeValueChange('address', addr)); + promise = + promise.then(__ => this.toolbar.checkAddressAlerts(patron, addr)); }); }); }