diff --git a/src/components/ha-combo-box.ts b/src/components/ha-combo-box.ts index adbb06a1bd..fa328e4dda 100644 --- a/src/components/ha-combo-box.ts +++ b/src/components/ha-combo-box.ts @@ -297,7 +297,7 @@ export class HaComboBox extends LitElement { const newValue = ev.detail.value; if (newValue !== this.value) { - fireEvent(this, "value-changed", { value: newValue }); + fireEvent(this, "value-changed", { value: newValue || undefined }); } }