From: Galen Charlton Date: Wed, 8 Jul 2020 20:25:47 +0000 (-0400) Subject: LP#1850547: eg-date-select: let blur trigger emitting changes X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7285c43d5331bc53bd6d6613c8463ee6392c6279;p=contrib%2FConifer.git 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 --- 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)"/>