Fix value calculation for input onchange event (#16)
This commit is contained in:
Родитель
4647f0f9a1
Коммит
893db2d4dc
|
@ -0,0 +1,5 @@
|
|||
build:
|
||||
docker:
|
||||
web: Dockerfile
|
||||
run:
|
||||
web: yarn serve
|
|
@ -26,7 +26,8 @@ export default class Input extends LightningElement {
|
|||
|
||||
_checked = false;
|
||||
|
||||
changeHandler() {
|
||||
changeHandler(event) {
|
||||
this._value = this.calculateValue(event.target.value);
|
||||
this.dispatchEvent(new CustomEvent('change'));
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче