diff --git a/src/components/ha-date-input.ts b/src/components/ha-date-input.ts index e3342396c5..b23f1f5b6b 100644 --- a/src/components/ha-date-input.ts +++ b/src/components/ha-date-input.ts @@ -118,6 +118,8 @@ export class HaDateInput extends LitElement { !this.value || (this._inited && !this._compareStringDates(ev.detail.value, this.value)) ) { + this.value = ev.detail.value; + fireEvent(this, "change"); fireEvent(this, "value-changed", { value: ev.detail.value }); } } diff --git a/src/dialogs/more-info/controls/more-info-input_datetime.js b/src/dialogs/more-info/controls/more-info-input_datetime.js index fad03c408a..cff1b5233b 100644 --- a/src/dialogs/more-info/controls/more-info-input_datetime.js +++ b/src/dialogs/more-info/controls/more-info-input_datetime.js @@ -16,7 +16,6 @@ class DatetimeInput extends PolymerElement {