mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-24 09:46:36 +00:00
Fix missing autocomplete in energy settings (#17218)
This commit is contained in:
parent
456eba1d88
commit
3bf8739a7c
@ -263,7 +263,9 @@ export class HaStatisticPicker extends LitElement {
|
||||
.renderer=${this._rowRenderer}
|
||||
.disabled=${this.disabled}
|
||||
.allowCustomValue=${this.allowCustomEntity}
|
||||
.filteredItems=${this._statistics}
|
||||
.filteredItems=${this.value && this._statistics.length === 0
|
||||
? undefined
|
||||
: this._statistics}
|
||||
item-value-path="id"
|
||||
item-id-path="id"
|
||||
item-label-path="name"
|
||||
|
Loading…
x
Reference in New Issue
Block a user