Fix openexchangerates form data description (#103974)
This commit is contained in:
parent
b35afab5ef
commit
7f08f139d6
1 changed files with 5 additions and 1 deletions
|
@ -66,7 +66,11 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||
self._reauth_entry.data if self._reauth_entry else {}
|
||||
)
|
||||
return self.async_show_form(
|
||||
step_id="user", data_schema=get_data_schema(currencies, existing_data)
|
||||
step_id="user",
|
||||
data_schema=get_data_schema(currencies, existing_data),
|
||||
description_placeholders={
|
||||
"signup": "https://openexchangerates.org/signup"
|
||||
},
|
||||
)
|
||||
|
||||
errors = {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue