Update value on change

pull/186/head
Cory LaViska 2020-08-20 08:25:52 -04:00
rodzic 794f2fe5a0
commit c71bbb4384
2 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -1,5 +1,9 @@
# Changelog
## 2.0.0-beta.15
- Fixed a bug where the `change` event wasn't updating the value in `sl-input`
## 2.0.0-beta.14
- Added dark theme

Wyświetl plik

@ -177,6 +177,7 @@ export class Input {
}
handleChange() {
this.value = this.input.value;
this.slChange.emit();
}