mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +00:00
Fix incorrect description placeholders in azure event hub (#129803)
This commit is contained in:
parent
cb0b942db3
commit
0f0f5fd0ab
@ -124,7 +124,9 @@ class AEHConfigFlow(ConfigFlow, domain=DOMAIN):
|
|||||||
step_id=STEP_CONN_STRING,
|
step_id=STEP_CONN_STRING,
|
||||||
data_schema=CONN_STRING_SCHEMA,
|
data_schema=CONN_STRING_SCHEMA,
|
||||||
errors=errors,
|
errors=errors,
|
||||||
description_placeholders=self._data[CONF_EVENT_HUB_INSTANCE_NAME],
|
description_placeholders={
|
||||||
|
"event_hub_instance_name": self._data[CONF_EVENT_HUB_INSTANCE_NAME]
|
||||||
|
},
|
||||||
last_step=True,
|
last_step=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -144,7 +146,9 @@ class AEHConfigFlow(ConfigFlow, domain=DOMAIN):
|
|||||||
step_id=STEP_SAS,
|
step_id=STEP_SAS,
|
||||||
data_schema=SAS_SCHEMA,
|
data_schema=SAS_SCHEMA,
|
||||||
errors=errors,
|
errors=errors,
|
||||||
description_placeholders=self._data[CONF_EVENT_HUB_INSTANCE_NAME],
|
description_placeholders={
|
||||||
|
"event_hub_instance_name": self._data[CONF_EVENT_HUB_INSTANCE_NAME]
|
||||||
|
},
|
||||||
last_step=True,
|
last_step=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user