Skip to content

Commit 2a80575

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

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
@@ -291,7 +291,7 @@ export class ComboBox implements OnChanges, OnInit, AfterViewInit, AfterContentI
291291
ev.stopPropagation();
292292
this.openDropdown();
293293
setTimeout(() => this.view.getCurrentElement().focus(), 0);
294-
} else if (ev.key === "ArrowUp"
294+
} else if ((ev.key === "ArrowUp" || ev.key === "Up") // `"Up"` is IE specific value
295295
&& this.dropdownMenu.nativeElement.contains(ev.target)
296296
&& !this.view["hasPrevElement"]()) {
297297
this.elementRef.nativeElement.querySelector(".bx--text-input").focus();

0 commit comments

Comments
 (0)