Skip to content

Commit

Permalink
Fix description placeholder in fibaro reauth (#128925)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjohansson-ST authored Oct 21, 2024
1 parent e32d6cd commit a0665dc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions homeassistant/components/fibaro/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import voluptuous as vol

from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
from homeassistant.const import CONF_PASSWORD, CONF_URL, CONF_USERNAME
from homeassistant.const import CONF_NAME, CONF_PASSWORD, CONF_URL, CONF_USERNAME
from homeassistant.core import HomeAssistant

from . import FibaroAuthFailed, FibaroConnectFailed, init_controller
Expand Down Expand Up @@ -117,5 +117,8 @@ async def async_step_reauth_confirm(
step_id="reauth_confirm",
data_schema=vol.Schema({vol.Required(CONF_PASSWORD): str}),
errors=errors,
description_placeholders={CONF_USERNAME: reauth_entry.data[CONF_USERNAME]},
description_placeholders={
CONF_USERNAME: reauth_entry.data[CONF_USERNAME],
CONF_NAME: reauth_entry.title,
},
)

0 comments on commit a0665dc

Please sign in to comment.