Missing entity_id in automation recipe (#23112)

This commit is contained in:
davidw3591 2022-06-15 14:28:47 +02:00 committed by GitHub
parent 92cada19eb
commit 1e3451e560
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,8 +99,10 @@ automation:
- "{{ trigger.event == 'start' }}" - "{{ trigger.event == 'start' }}"
then: then:
- service: light.turn_on - service: light.turn_on
entity_id: light.front
else: else:
- service: light.turn_off - service: light.turn_off
entity_id: light.front
mode: queued mode: queued
``` ```
{% endraw %} {% endraw %}