From dd001cacfd7343c71d8e6f7ff17c2178a6eacf7d Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Mon, 29 Nov 2021 22:06:56 +1300 Subject: [PATCH] Fix missing name for ESPHome reauth dialog (#60508) --- homeassistant/components/esphome/config_flow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/esphome/config_flow.py b/homeassistant/components/esphome/config_flow.py index fab4b045d0c..94c1f80a5e4 100644 --- a/homeassistant/components/esphome/config_flow.py +++ b/homeassistant/components/esphome/config_flow.py @@ -71,6 +71,7 @@ class EsphomeFlowHandler(ConfigFlow, domain=DOMAIN): self._port = entry.data[CONF_PORT] self._password = entry.data[CONF_PASSWORD] self._noise_psk = entry.data.get(CONF_NOISE_PSK) + self._name = entry.title return await self.async_step_reauth_confirm() async def async_step_reauth_confirm(