From e8e1ec23bd319e6b62fa52232bd63ca6814e445b 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 9189b0cbfb9..043ab55dda5 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 %} ```