Prevent text selection when select is focused

This commit is contained in:
Cory LaViska
2020-07-24 09:25:41 -04:00
parent 89cce4bbb8
commit 3e0f174052

View File

@@ -146,6 +146,7 @@ export class Select {
handleFocus() {
this.hasFocus = true;
this.slFocus.emit();
this.input.setSelectionRange(0, 0);
}
handleKeyDown(event: KeyboardEvent) {