🔹 template-entity-row - Put templates in an entities row

Someone can say me why the state of the custom:template-entity-row does not displayed?

image

entity: input_boolean.heizperiode
name: Heizperiode
icon: mdi:thermostat-box-auto
show_state: false
state_color: true
tap_action:
  action: none
type: custom:multiple-entity-row
entities:
  - entity: automation.advanced_heating_control_wohnzimmer
    name: Automatik
    toggle: true
    styles:
      width: 100px
  - entity: input_boolean.heizperiode
    name: Heizperiode
    toggle: true
  - type: custom:template-entity-row
    entity: sun.sun
    name: tset
    tap_action:
      action: none
    state: |
      {% set scheduler_value = states('input_select.advanced_heating_control_wohnzimmer_scheduler') %}
      {% if is_state("schedule.advanced_heating_control_wohnzimmer_" ~ scheduler_value, "on") %} Comfort {% else %} Minimal {% endif %}

Should not be displayed since used in a wrong place.
It may only be used inside Entities card, not inside multiple-entity-row.

ah okay, thats bad, but thanks