Skip to content

Commit 03f26b1

Browse files
authored
const -> let
1 parent 9f35ad5 commit 03f26b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/panels/config/helpers/forms/ha-input_text-form.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class HaInputTextForm extends LitElement {
170170
}
171171
ev.stopPropagation();
172172
const configValue = (ev.target as any).configValue;
173-
const value = ev.detail?.value || (ev.target as any).value;
173+
let value = ev.detail?.value || (ev.target as any).value;
174174
if (this[`_${configValue}`] === value) {
175175
return;
176176
}

0 commit comments

Comments
 (0)