From 2b5ad6cdffc790dc21a88577de71693d6f5235d5 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 2 Jul 2020 17:39:00 -0400 Subject: [PATCH] LP1888723 combobox down arrow same as click now treats down arrow as the same as a click operation, allowing for activation of selectabled options dropdown via keyboard. Signed-off-by: Bill Erickson --- Open-ILS/src/eg2/src/app/share/combobox/combobox.component.html | 1 + 1 file changed, 1 insertion(+) diff --git a/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.html b/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.html index 83df22e20a..1d35b48450 100644 --- a/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.html +++ b/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.html @@ -18,6 +18,7 @@ [inputFormatter]="formatDisplayString" (click)="onClick($event)" (blur)="onBlur()" + (keyup.arrowdown)="onClick($event)" container="body" (selectItem)="selectorChanged($event)" #instance="ngbTypeahead"/> -- 2.11.0