From f1a75873986c28933cdc70b54f5d6954b1108e76 Mon Sep 17 00:00:00 2001 From: jfurtner <1195789+jfurtner@users.noreply.github.com> Date: Mon, 7 Aug 2023 05:57:30 +0000 Subject: [PATCH] Constant selector update to match schema (#28460) Updating blueprint selector documentation to match schema, as found at line ~500 (class ConstantSelector registers "constant"). Source: https://github.com/home-assistant/core/blob/dev/homeassistant/helpers/selector.py --- source/_docs/blueprint/selectors.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_docs/blueprint/selectors.markdown b/source/_docs/blueprint/selectors.markdown index 562e7ac7af8..85292299bda 100644 --- a/source/_docs/blueprint/selectors.markdown +++ b/source/_docs/blueprint/selectors.markdown @@ -383,12 +383,12 @@ is that the constant selector has no value when it's not enabled. The selector's value must be configured, and optionally, a label. ```yaml -boolean: +constant: value: true label: Enabled ``` -The output of this selector is the configured value when the toggle is on, it has not output otherwise. +The output of this selector is the configured value when the toggle is on, it has no output otherwise. ## Conversation agent selector