thomasloven / lovelace-auto-entities

🔹Automatically populate the entities-list of lovelace cards
MIT License
1.32k stars 119 forks source link

Visibility control #468

Open oywino opened 1 month ago

oywino commented 1 month ago

I have the following card yaml which gives a long list of the update state of all my integrations;

type: custom:auto-entities
card:
  type: entities
filter:
  include:
    - domain: update
    - name: HA Current Version
    - name: HA Update Available
  exclude: []
sort:
  method: entity_id
  ignore_case: true

However, I only need to see each item (entity) in the list when an update is available. Is this possible to achieve? (I have the card in the new sections view in HA 2024.10.2)

WendelFelius commented 1 month ago
type: custom:auto-entities
card:
  type: entities
filter:
  include:
    - domain: update
      state: on
  exclude: []
sort:
  method: entity_id
  ignore_case: true
oywino commented 1 month ago

Excellent! Thank you 👍