Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/dialogs/config-flow/step-flow-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class StepFlowForm extends LitElement {
? html`<ha-alert alert-type="error">${this._errorMsg}</ha-alert>`
: ""}
<ha-form
.hass=${this.hass}
.data=${stepData}
.disabled=${this._loading}
@value-changed=${this._stepDataChanged}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export class HaDeviceAction extends LitElement {
${this._capabilities?.extra_fields
? html`
<ha-form
.hass=${this.hass}
.data=${this._extraFieldsData(this.action, this._capabilities)}
.schema=${this._capabilities.extra_fields}
.computeLabel=${this._extraFieldsComputeLabelCallback(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export class HaDeviceCondition extends LitElement {
${this._capabilities?.extra_fields
? html`
<ha-form
.hass=${this.hass}
.data=${this._extraFieldsData(this.condition, this._capabilities)}
.schema=${this._capabilities.extra_fields}
.computeLabel=${this._extraFieldsComputeLabelCallback(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export class HaDeviceTrigger extends LitElement {
${this._capabilities?.extra_fields
? html`
<ha-form
.hass=${this.hass}
.data=${this._extraFieldsData(this.trigger, this._capabilities)}
.schema=${this._capabilities.extra_fields}
.computeLabel=${this._extraFieldsComputeLabelCallback(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ class ZHAConfigDashboard extends LitElement {
>
<div class="card-content">
<ha-form
.hass=${this.hass}
.schema=${schema}
.data=${this._configuration!.data[section]}
@value-changed=${this._dataChanged}
Expand Down
1 change: 1 addition & 0 deletions src/panels/profile/dialog-ha-mfa-module-setup-flow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ class HaMfaModuleSetupFlow extends LitElement {
)}
></ha-markdown>
<ha-form
.hass=${this.hass}
.data=${this._stepData}
.schema=${this._step.data_schema}
.error=${this._step.errors}
Expand Down