From dd15133c9495ad3fd2b4e5ca1acdda3da507f93c Mon Sep 17 00:00:00 2001 From: "DeAngelis, Katie" Date: Thu, 14 Jul 2022 16:00:33 -0400 Subject: [PATCH] fix: label attribute not toggling input Removed "htmlfor" from LabelHTMLAttributes interface as it is not valid jsx. --- src/declarations/stencil-public-runtime.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/declarations/stencil-public-runtime.ts b/src/declarations/stencil-public-runtime.ts index 7edd4ce87ba..9530bb82c11 100644 --- a/src/declarations/stencil-public-runtime.ts +++ b/src/declarations/stencil-public-runtime.ts @@ -990,7 +990,6 @@ export namespace JSXBase { export interface LabelHTMLAttributes extends HTMLAttributes { form?: string; htmlFor?: string; - htmlfor?: string; } export interface LiHTMLAttributes extends HTMLAttributes { @@ -1116,7 +1115,6 @@ export namespace JSXBase { export interface OutputHTMLAttributes extends HTMLAttributes { form?: string; htmlFor?: string; - htmlfor?: string; name?: string; }