trigger.entity_id should not be quoted (#5985)

This commit is contained in:
Phil 2018-08-09 14:04:47 -05:00 committed by Franck Nijhof
parent 615922e5f1
commit ae7aaeb1ed

View File

@ -102,7 +102,7 @@ When using `wait_template` within an automation `trigger.entity_id` is supported
{% raw %}
```yaml
- wait_template: "{{ is_state('trigger.entity_id', 'on') }}"
- wait_template: "{{ is_state(trigger.entity_id, 'on') }}"
```
{% endraw %}