Problem conditional get to work in vertical

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

Ok guys,

I changed conditions to ‘state: off’. Now it is shown right to the switch-names.

And the major thing to the editing-things:

  • in the editor/card-preview-window => it works
  • in the configurational UI => it doesnt
  • in the UI (without config-mode) => it works

Is this how it has to work?