mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-28 03:36:44 +00:00
Fix select entity change (#25310)
This commit is contained in:
parent
44f5f7bdb5
commit
8f422357f1
@ -163,6 +163,7 @@ export class HuiGenericEntityRow extends LitElement {
|
||||
@touchend=${stopPropagation}
|
||||
@keydown=${stopPropagation}
|
||||
@click=${stopPropagation}
|
||||
@action=${stopPropagation}
|
||||
></slot>`}
|
||||
</div>
|
||||
`;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user