From 30bb6b4a21cb0724a0f9ae5cb249964468b779c6 Mon Sep 17 00:00:00 2001 From: Callum Powell Date: Sun, 27 Mar 2022 11:41:21 +0200 Subject: [PATCH] Update notification example for shopping list (#22164) Co-authored-by: Franck Nijhof --- source/_integrations/shopping_list.markdown | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/source/_integrations/shopping_list.markdown b/source/_integrations/shopping_list.markdown index ba8f35524ef..220f733069b 100644 --- a/source/_integrations/shopping_list.markdown +++ b/source/_integrations/shopping_list.markdown @@ -58,18 +58,18 @@ Clear completed items from the shopping list. ## Using in Automations -The simplest way use shopping list with automations (e.g., when entering a zone with shops) is to create a notification that can be clicked to open the shopping list. -This is tested to work with the Android companion app. +The simplest way to use the shopping list with automations (e.g., when entering a zone with shops) is to create a notification that can be clicked to open the shopping list. {% raw %} ```yaml -service: notify.notify -title: "Time to shop?" -message: 'Click to open the shopping list' -data: - clickAction: "/shopping-list" - url: "/shopping-list" +- service: notify.notify + data: + title: "Time to shop?" + message: "Click to open the shopping list" + data: + clickAction: "/shopping-list" + url: "/shopping-list" ``` {% endraw %}