Add text-selector autocomplete in Bring config flow (#124063)

Add autocomplete to Bring config flow schema
This commit is contained in:
Mr. Bubbles
2024-09-08 12:29:42 +02:00
committed by GitHub
parent 31aef86c0f
commit fd0c63fe52

View File

@@ -33,11 +33,13 @@ STEP_USER_DATA_SCHEMA = vol.Schema(
vol.Required(CONF_EMAIL): TextSelector(
TextSelectorConfig(
type=TextSelectorType.EMAIL,
autocomplete="email",
),
),
vol.Required(CONF_PASSWORD): TextSelector(
TextSelectorConfig(
type=TextSelectorType.PASSWORD,
autocomplete="current-password",
),
),
}