diff --git a/src/components/ha-time-picker.ts b/src/components/ha-time-picker.ts index 6d107fa088..5db6e560c6 100644 --- a/src/components/ha-time-picker.ts +++ b/src/components/ha-time-picker.ts @@ -172,13 +172,13 @@ export class HaTimePicker extends LitElement { } private _hoursChanged(ev: CustomEvent) { + ev.stopPropagation?.(); this._hours = ev.detail.value; - console.log("hoursChanged", ev.detail); } private _minutesChanged(ev: CustomEvent) { + ev.stopPropagation?.(); this._minutes = ev.detail.value; - console.log("minutesChanged", ev.detail); if (ev.detail.clamped) { if (ev.detail.value === 0) { this._hoursChanged({ @@ -205,8 +205,8 @@ export class HaTimePicker extends LitElement { } private _secondsChanged(ev: CustomEvent) { + ev.stopPropagation?.(); this._seconds = ev.detail.value; - console.log("secondsChanged", ev.detail); if (ev.detail.clamped) { if (ev.detail.value === 0) { this._minutesChanged({