From a4d6c4172473fd2b99a1358fa8bbc4ec428641bb Mon Sep 17 00:00:00 2001 From: Andrew Jackson Date: Fri, 2 Aug 2024 13:47:09 +0100 Subject: [PATCH] Mealie example template fix (#34091) --- source/_integrations/mealie.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/mealie.markdown b/source/_integrations/mealie.markdown index 58b583b96e4..e00b3dd4dc7 100644 --- a/source/_integrations/mealie.markdown +++ b/source/_integrations/mealie.markdown @@ -145,7 +145,7 @@ template: unique_id: mealie_dinner_today state: > {% for meal in result.mealplan if meal.entry_type == "dinner" -%} - {{ meal.recipe['name'] if meal.recipe is not none else meal.title }} + {{ meal.recipe['name'] if meal.recipe is not none else meal.title -}} {{ ", " if not loop.last }} {%- endfor %} ```