1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-04 13:15:29 +01:00

MELCloud Home add current password config flow (#174950)

This commit is contained in:
Erwin Douna
2026-06-27 09:26:20 +02:00
committed by GitHub
parent 86d282ac2a
commit fac6e8feb6
@@ -31,7 +31,9 @@ STEP_USER_DATA_SCHEMA = vol.Schema(
TextSelectorConfig(type=TextSelectorType.EMAIL, autocomplete="username")
),
vol.Required(CONF_PASSWORD): TextSelector(
TextSelectorConfig(type=TextSelectorType.PASSWORD)
TextSelectorConfig(
type=TextSelectorType.PASSWORD, autocomplete="current-password"
)
),
}
)