Fix ha-form on edge (#4248)

This commit is contained in:
Bram Kragten
2019-11-19 21:06:52 +01:00
committed by GitHub
parent 3133118870
commit 1249c0eea9
8 changed files with 28 additions and 53 deletions

View File

@@ -76,14 +76,9 @@ export class HaFormString extends LitElement implements HaFormElement {
if (this.data === value) {
return;
}
fireEvent(
this,
"value-changed",
{
value,
},
{ bubbles: false }
);
fireEvent(this, "value-changed", {
value,
});
}
private _stringType() {