From 8ab0ad551d0849932407a91366439f14cd921b8e Mon Sep 17 00:00:00 2001 From: Lars Kusch Date: Mon, 7 Oct 2024 08:16:27 +0200 Subject: [PATCH] Minor bugfix --- custom_components/solvis_control/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/solvis_control/config_flow.py b/custom_components/solvis_control/config_flow.py index 9fb0334..aa375ea 100644 --- a/custom_components/solvis_control/config_flow.py +++ b/custom_components/solvis_control/config_flow.py @@ -175,4 +175,4 @@ async def async_step_features( step_id="features", data_schema=get_solvis_modules_options(self.data) ) self.data.update(user_input) - return self.async_create_entry(title=self.config.get(CONF_NAME), data=self.data) + return self.async_create_entry(title=self.data[CONF_NAME], data=self.data)