Hi folks. I could not figure out why the following won't work: If I use
action: homeassistant.turn_off
metadata: {}
data: {}
target:
entity_id:
- switch.adalbert_3_internet_access
- switch.alfhildr_internet_access
- switch.wohnzimmer_internet_access
- switch.sarinasipad_internet_access
- switch.josiasipad_internet_access
everything works fine. But the shorter form
action: homeassistant.turn_off
metadata: {}
data: {}
target:
label_id: kinder_internetzugang
does not work. It has no impact at all. But when I test the template
{{ label_entities('kinder_internetzugang') }}
it brings the list
[
"switch.adalbert_3_internet_access",
"switch.alfhildr_internet_access",
"switch.josiasipad_internet_access",
"switch.sarinasipad_internet_access",
"switch.wohnzimmer_internet_access"
]
Could you please help me with that? Thank you very much.