diff --git a/src/components/ha-formfield.ts b/src/components/ha-formfield.ts index 8a1e60e480..e0452e0db7 100644 --- a/src/components/ha-formfield.ts +++ b/src/components/ha-formfield.ts @@ -5,22 +5,6 @@ import { customElement } from "lit/decorators"; @customElement("ha-formfield") // @ts-expect-error export class HaFormfield extends Formfield { - protected _labelClick() { - const input = this.input; - if (input) { - input.focus(); - switch (input.tagName) { - case "HA-CHECKBOX": - case "HA-RADIO": - (input as any).checked = !(input as any).checked; - break; - default: - input.click(); - break; - } - } - } - protected static get styles(): CSSResultGroup { return [ Formfield.styles,