From: Bill Erickson Date: Thu, 26 Aug 2021 18:32:36 +0000 (-0400) Subject: LP1904036 Patron search DoB month/day repair X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8e57a60c91cfc6e41dbc202950e347b0d551d63e;p=evergreen%2Fpines.git LP1904036 Patron search DoB month/day 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/share/patron/search.component.ts b/Open-ILS/src/eg2/src/app/staff/share/patron/search.component.ts index 46c07bc74b..d3b9da7f51 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/patron/search.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/patron/search.component.ts @@ -309,7 +309,7 @@ export class PatronSearchComponent implements OnInit, AfterViewInit { if (!field.match(/year/)) { // force day/month to be 2 digits - chunk[field].value = ('0' + value).slice(-2); + chunk.value = ('0' + value).slice(-2); } break; }