From 6ad752073785f64aeeba5f2c833abfd5b1d79ad5 Mon Sep 17 00:00:00 2001 From: Sergej Date: Mon, 23 Sep 2019 21:50:52 +0100 Subject: [PATCH] Missing end bracket of `is_state` function (#10440) --- source/_lovelace/markdown.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_lovelace/markdown.markdown b/source/_lovelace/markdown.markdown index a45e5c82b1b..3f3c15dd81f 100644 --- a/source/_lovelace/markdown.markdown +++ b/source/_lovelace/markdown.markdown @@ -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 %}