mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 10:59:50 +00:00
Fix clearing of filters (#20288)
* Fix clearing of filters * Update ha-filter-integrations.ts * Update ha-filter-integrations.ts
This commit is contained in:
@@ -50,7 +50,7 @@ export class HaFilterBlueprints extends LitElement {
|
||||
? nothing
|
||||
: html`<ha-check-list-item
|
||||
.value=${id}
|
||||
.selected=${this.value?.includes(id)}
|
||||
.selected=${(this.value || []).includes(id)}
|
||||
>
|
||||
${blueprint.metadata.name || id}
|
||||
</ha-check-list-item>`
|
||||
|
||||
Reference in New Issue
Block a user