mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-27 19:26:36 +00:00
Use stepid title if present for progress flow (#7710)
This commit is contained in:
parent
473e381d75
commit
af1518e924
@ -162,7 +162,11 @@ export const showConfigFlowDialog = (
|
|||||||
},
|
},
|
||||||
|
|
||||||
renderShowFormProgressHeader(hass, step) {
|
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) {
|
renderShowFormProgressDescription(hass, step) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user