Skip to content

Commit 62efb42

Browse files
Update src/combobox/combobox.component.ts
Co-Authored-By: cal-smith <[email protected]>
1 parent 1df1242 commit 62efb42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/combobox/combobox.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ export class ComboBox implements OnChanges, OnInit, AfterViewInit, AfterContentI
286286
hostkeys(ev: KeyboardEvent) {
287287
if (ev.key === "Escape") {
288288
this.closeDropdown();
289-
} else if (ev.key === "ArrowDown"
289+
} else if ((ev.key === "ArrowDown" || ev.key === "Down") // `"Down"` is IE specific value
290290
&& (!this.dropdownMenu || !this.dropdownMenu.nativeElement.contains(ev.target))) {
291291
ev.stopPropagation();
292292
this.openDropdown();

0 commit comments

Comments
 (0)