Prevent text selection when select is focused

pull/146/head
Cory LaViska 2020-07-24 09:25:41 -04:00
rodzic 89cce4bbb8
commit 3e0f174052
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

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