Fix select entity change (#25310)

This commit is contained in:
Wendelin 2025-05-05 11:13:50 +02:00 committed by Paul Bottein
parent 5cd68301ed
commit 376cac6002
No known key found for this signature in database
2 changed files with 1 additions and 1 deletions

View File

@ -163,6 +163,7 @@ export class HuiGenericEntityRow extends LitElement {
@touchend=${stopPropagation}
@keydown=${stopPropagation}
@click=${stopPropagation}
@action=${stopPropagation}
></slot>`}
</div>
`;

View File

@ -93,7 +93,6 @@ class HuiSelectEntityRow extends LitElement implements LovelaceRow {
`;
private _handleAction(ev): void {
ev.stopPropagation();
const stateObj = this.hass!.states[this._config!.entity] as SelectEntity;
const option = ev.target.value;