We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461ef9b commit 37e6473Copy full SHA for 37e6473
src/components/ha-language-picker.ts
@@ -73,6 +73,8 @@ export class HaLanguagePicker extends LitElement {
73
74
@property({ type: Boolean }) public required = false;
75
76
+ @property() public helper?: string;
77
+
78
@property({ attribute: "native-name", type: Boolean })
79
public nativeName = false;
80
@@ -135,6 +137,7 @@ export class HaLanguagePicker extends LitElement {
135
137
.value=${value}
136
138
.valueRenderer=${this._valueRenderer}
139
.disabled=${this.disabled}
140
+ .helper=${this.helper}
141
.getItems=${this._getItems}
142
@value-changed=${this._changed}
143
hide-clear-icon
0 commit comments