diff --git a/src/dialogs/config-flow/show-dialog-config-flow.ts b/src/dialogs/config-flow/show-dialog-config-flow.ts index cccee3e5de..7be3f218cf 100644 --- a/src/dialogs/config-flow/show-dialog-config-flow.ts +++ b/src/dialogs/config-flow/show-dialog-config-flow.ts @@ -52,7 +52,7 @@ export const showConfigFlowDialog = ( ? html` ` - : ""; + : step.reason; }, renderShowFormStepHeader(hass, step) { diff --git a/src/dialogs/config-flow/show-dialog-data-entry-flow.ts b/src/dialogs/config-flow/show-dialog-data-entry-flow.ts index 3594188455..54caaecbc7 100644 --- a/src/dialogs/config-flow/show-dialog-data-entry-flow.ts +++ b/src/dialogs/config-flow/show-dialog-data-entry-flow.ts @@ -34,7 +34,7 @@ export interface FlowConfig { renderAbortDescription( hass: HomeAssistant, step: DataEntryFlowStepAbort - ): TemplateResult | ""; + ): TemplateResult | string; renderShowFormStepHeader( hass: HomeAssistant, diff --git a/src/dialogs/config-flow/show-dialog-options-flow.ts b/src/dialogs/config-flow/show-dialog-options-flow.ts index 491df7e91f..0d3ab72685 100644 --- a/src/dialogs/config-flow/show-dialog-options-flow.ts +++ b/src/dialogs/config-flow/show-dialog-options-flow.ts @@ -65,7 +65,7 @@ export const showOptionsFlowDialog = ( .content=${description} > ` - : ""; + : step.reason; }, renderShowFormStepHeader(hass, step) { diff --git a/src/panels/config/repairs/show-dialog-repair-flow.ts b/src/panels/config/repairs/show-dialog-repair-flow.ts index 5adfd054ef..015b60b2d3 100644 --- a/src/panels/config/repairs/show-dialog-repair-flow.ts +++ b/src/panels/config/repairs/show-dialog-repair-flow.ts @@ -64,7 +64,7 @@ export const showRepairsFlowDialog = ( .content=${description} > ` - : ""; + : step.reason; }, renderShowFormStepHeader(hass, step) {