From 08874354c733305984e47918336e409d2248f357 Mon Sep 17 00:00:00 2001 From: David Knowles Date: Sun, 10 Mar 2024 16:20:46 -0400 Subject: [PATCH] Add missing translation placeholder in Hydrawise (#113007) Add missing translation placeholder --- homeassistant/components/hydrawise/config_flow.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/hydrawise/config_flow.py b/homeassistant/components/hydrawise/config_flow.py index 7087c4d2c34..cfaaefcd03a 100644 --- a/homeassistant/components/hydrawise/config_flow.py +++ b/homeassistant/components/hydrawise/config_flow.py @@ -52,7 +52,10 @@ class HydrawiseConfigFlow(ConfigFlow, domain=DOMAIN): is_fixable=False, severity=IssueSeverity.ERROR, translation_key="deprecated_yaml_import_issue", - translation_placeholders={"error_type": error_type}, + translation_placeholders={ + "error_type": error_type, + "url": "/config/integrations/dashboard/add?domain=hydrawise", + }, ) return self.async_abort(reason=error_type)