From: Bill Erickson Date: Thu, 6 May 2021 16:24:50 +0000 (-0400) Subject: LP1904036 Apply default address type X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=416aaf383f27c96ee46018cbfb0e2bd57cb5475a;p=evergreen%2Ftadl.git LP1904036 Apply default address type 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 66bfff1d33..373a6d88cb 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 @@ -761,6 +761,9 @@ export class EditComponent implements OnInit, AfterViewInit { patron.mailing_address(addr); patron.addresses([addr]); + this.strings.interpolate('circ.patron.edit.default_addr_type') + .then(msg => addr.address_type(msg)); + this.patron = patron; this.addWaiver(); }