Missing end bracket of is_state function (#10440)

This commit is contained in:
Sergej 2019-09-23 21:50:52 +01:00 committed by Fabian Affolter
parent 13962b6af6
commit 6ad7520737

View File

@ -67,6 +67,6 @@ card:
- {{ l.entity }}
{%- endfor %}
And the door is {% if is_state('binary_sensor.door', 'on' %} open {% else %} closed {% endif %}.
And the door is {% if is_state('binary_sensor.door', 'on') %} open {% else %} closed {% endif %}.
```
{% endraw %}