mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 12:45:28 +02:00
Fix openexchangerates form data description (#103974)
This commit is contained in:
@@ -66,7 +66,11 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||||||
self._reauth_entry.data if self._reauth_entry else {}
|
self._reauth_entry.data if self._reauth_entry else {}
|
||||||
)
|
)
|
||||||
return self.async_show_form(
|
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 = {}
|
errors = {}
|
||||||
|
Reference in New Issue
Block a user