Fix zwave automations not handling 0 values in the visual editor (#14835)

Co-authored-by: Bram Kragten <mail@bramkragten.nl>
fixes undefined
This commit is contained in:
karwosts 2022-12-22 03:48:48 -08:00 committed by GitHub
parent 4919341871
commit a8b7937d75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,7 @@ export class HaSelectSelector extends LitElement {
private _valueChanged(ev) { private _valueChanged(ev) {
ev.stopPropagation(); ev.stopPropagation();
const value = ev.detail?.value || ev.target.value; const value = ev.detail?.value || ev.target.value;
if (this.disabled || !value) { if (this.disabled || value === undefined) {
return; return;
} }
fireEvent(this, "value-changed", { fireEvent(this, "value-changed", {