From 0365418545f3124912c047b01b007f31d5036bce 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 Signed-off-by: Ruth Frasur Signed-off-by: Galen Charlton --- 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 0e5253b9f6..e3f750990e 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 @@ -25,6 +25,7 @@ [inputFormatter]="formatDisplayString" (click)="onClick($event)" (blur)="onBlur()" + (keyup.arrowdown)="onClick($event)" container="body" (selectItem)="selectorChanged($event)" #instance="ngbTypeahead"/> -- 2.11.0