From 5319f7a9b9ac807f37cf22b08f10e0c4b36a1698 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Wed, 8 Jul 2020 16:25:47 -0400 Subject: [PATCH] date-select: let blur trigger emitting changes (Otherwise, you have to select the calendar button or hit return inisde the input) Signed-off-by: Galen Charlton --- Open-ILS/src/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.11.0