From 7285c43d5331bc53bd6d6613c8463ee6392c6279 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Wed, 8 Jul 2020 16:25:47 -0400 Subject: [PATCH] LP#1850547: eg-date-select: let blur trigger emitting changes (Otherwise, you have to select the calendar button or hit return inisde the input) Sponsored-by: Evergreen Community Development Initiative Sponsored-by: Georgia Public Library Service Sponsored-by: Indiana State Library Sponsored-by: C/W MARS Signed-off-by: Galen Charlton Signed-off-by: Tiffany Little Signed-off-by: Bill Erickson --- .../eg2/src/app/share/date-select/date-select.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/share/date-select/date-select.component.html b/Open-ILS/src/eg2/src/app/share/date-select/date-select.component.html index f137beb496..0f5777ee1b 100644 --- a/Open-ILS/src/eg2/src/app/share/date-select/date-select.component.html +++ b/Open-ILS/src/eg2/src/app/share/date-select/date-select.component.html @@ -15,7 +15,7 @@ name="{{fieldName}}" [disabled]="disabled" [required]="required" - (blur)="propagateTouch()" + (blur)="propagateTouch(); onDateEnter()" [(ngModel)]="current" (keyup.enter)="onDateEnter()" (dateSelect)="onDateSelect($event)"/> -- 2.43.2