From 0c46958888710bc1dc4814ee2f8b9fe0af6b8257 Mon Sep 17 00:00:00 2001 From: Robert Szucs Date: Sat, 3 Jun 2023 00:54:36 +0200 Subject: [PATCH] fix a typo (#2086) Signed-off-by: Robert Szucs --- tutorials/getting_started/custom_widgets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/getting_started/custom_widgets.md b/tutorials/getting_started/custom_widgets.md index 21baa430d2..35ec27f8f3 100644 --- a/tutorials/getting_started/custom_widgets.md +++ b/tutorials/getting_started/custom_widgets.md @@ -130,7 +130,7 @@ config: iconColor: '=(items[props.item].state == "ON") ? "yellow" : "gray"' title: =props.title color: '=(items[props.item].state == "ON") ? "yellow" : "gray"' - item: props.item + item: =props.item ``` Save the widget and return to one of the Items that should use this widget.