Hi,
In a vertical-stack i set a entity to filter the following conditional. In the editor-preview-window it works fine. But if I save and try to use the filter it dont work. Did i do something wrong?
Thats the rules I try to establish:
state: on => see only new updates
state: off => see all
type: vertical-stack
cards:
- type: custom:mushroom-chips-card
chips:
- type: template
icon: mdi:filter
entity: input_boolean.filter_update
icon_color: |
{% if is_state('input_boolean.filter_update', 'on') %}
green
{% else %}
grey
{% endif %}
content: |
{% if is_state('input_boolean.filter_update', 'on') %}
Filter: Updates
{% else %}
Filter: alle
{% endif %}
- type: conditional
conditions:
- entity: input_boolean.filter_update
state: 'on'
card:
type: custom:auto-entities
card:
type: entities
title: Test
filter:
include:
- entity_id: update.*
area: HA System