diff --git a/src/dialogs/config-flow/dialog-data-entry-flow.ts b/src/dialogs/config-flow/dialog-data-entry-flow.ts index a85f3b11bd..d51838a682 100644 --- a/src/dialogs/config-flow/dialog-data-entry-flow.ts +++ b/src/dialogs/config-flow/dialog-data-entry-flow.ts @@ -141,6 +141,7 @@ class DataEntryFlowDialog extends LitElement { .flowConfig=${this._params.flowConfig} .hass=${this.hass} .handlers=${this._handlers} + .showAdvanced=${this._params.showAdvanced} > ` : this._step.type === "form" 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 a3609a733f..3d34834335 100644 --- a/src/dialogs/config-flow/show-dialog-data-entry-flow.ts +++ b/src/dialogs/config-flow/show-dialog-data-entry-flow.ts @@ -75,6 +75,7 @@ export interface DataEntryFlowDialogParams { continueFlowId?: string; dialogClosedCallback?: (params: { flowFinished: boolean }) => void; flowConfig: FlowConfig; + showAdvanced?: boolean; } export const loadDataEntryFlowDialog = () => diff --git a/src/dialogs/config-flow/step-flow-pick-handler.ts b/src/dialogs/config-flow/step-flow-pick-handler.ts index 6eaa5a5b01..ef410f7529 100644 --- a/src/dialogs/config-flow/step-flow-pick-handler.ts +++ b/src/dialogs/config-flow/step-flow-pick-handler.ts @@ -31,6 +31,7 @@ class StepFlowPickHandler extends LitElement { @property() public hass!: HomeAssistant; @property() public handlers!: string[]; + @property() public showAdvanced?: boolean; @property() private filter?: string; private _width?: number; @@ -79,18 +80,24 @@ class StepFlowPickHandler extends LitElement { ` )} -
- ${this.hass.localize(
- "ui.panel.config.integrations.note_about_integrations"
- )}
- ${this.hass.localize(
- "ui.panel.config.integrations.note_about_website_reference"
- )}${this.hass.localize(
- "ui.panel.config.integrations.home_assistant_website"
- )}.
-
+ ${this.hass.localize(
+ "ui.panel.config.integrations.note_about_integrations"
+ )}
+ ${this.hass.localize(
+ "ui.panel.config.integrations.note_about_website_reference"
+ )}${this.hass.localize(
+ "ui.panel.config.integrations.home_assistant_website"
+ )}.
+