We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f35ad5 commit 03f26b1Copy full SHA for 03f26b1
src/panels/config/helpers/forms/ha-input_text-form.ts
@@ -170,7 +170,7 @@ class HaInputTextForm extends LitElement {
170
}
171
ev.stopPropagation();
172
const configValue = (ev.target as any).configValue;
173
- const value = ev.detail?.value || (ev.target as any).value;
+ let value = ev.detail?.value || (ev.target as any).value;
174
if (this[`_${configValue}`] === value) {
175
return;
176
0 commit comments