diff --git a/custom_components/label_state/config_flow.py b/custom_components/label_state/config_flow.py index 6c1e2f1..6012ee8 100644 --- a/custom_components/label_state/config_flow.py +++ b/custom_components/label_state/config_flow.py @@ -81,7 +81,11 @@ CONFIG_SCHEMA_NUMERIC_STATE = vol.Schema( { - vol.Required("name"): selector.TextSelector(), + vol.Required("name"): selector.TextSelector( + selector.TextSelectorConfig( + type=selector.TextSelectorType.TEXT, autocomplete="off" + ), + ) } ).extend(OPTIONS_SCHEMA_NUMERIC_STATE.schema)