From 3dade90d05260021be239a5bf7b29142d1a9c348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lov=C3=A9n?= Date: Fri, 18 Sep 2020 09:51:23 +0200 Subject: [PATCH] Quotes around jinja templates (#14545) The ones around `entity_id` aren't necessary, but it's better to put them in than to try to explain why not. --- source/_integrations/snips.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/snips.markdown b/source/_integrations/snips.markdown index 3ff7024756d..5039cdc8b7c 100644 --- a/source/_integrations/snips.markdown +++ b/source/_integrations/snips.markdown @@ -152,8 +152,8 @@ intent_script: action: - service: light.turn_on data: - entity_id: light.{{ objectLocation | replace(" ","_") }} - color_name: {{ objectColor }} + entity_id: 'light.{{ objectLocation | replace(" ","_") }}' + color_name: '{{ objectColor }}' ``` {% endraw %}