From af1518e924a556ee3aadf48cc10c1eb73dbab8a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Tue, 17 Nov 2020 14:33:13 +0100 Subject: [PATCH] Use stepid title if present for progress flow (#7710) --- src/dialogs/config-flow/show-dialog-config-flow.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/dialogs/config-flow/show-dialog-config-flow.ts b/src/dialogs/config-flow/show-dialog-config-flow.ts index a42663ea6b..452d83cb22 100644 --- a/src/dialogs/config-flow/show-dialog-config-flow.ts +++ b/src/dialogs/config-flow/show-dialog-config-flow.ts @@ -162,7 +162,11 @@ export const showConfigFlowDialog = ( }, renderShowFormProgressHeader(hass, step) { - return hass.localize(`component.${step.handler}.title`); + return ( + hass.localize( + `component.${step.handler}.config.step.${step.step_id}.title` + ) || hass.localize(`component.${step.handler}.title`) + ); }, renderShowFormProgressDescription(hass, step) {