From ef084b0480066f304b45e1cbc160ec43acfe7755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Tue, 26 Mar 2024 21:48:43 +0100 Subject: [PATCH] proper comment --- .../src/packages/core/validation/mixins/form-control.mixin.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/validation/mixins/form-control.mixin.ts b/src/Umbraco.Web.UI.Client/src/packages/core/validation/mixins/form-control.mixin.ts index 6199632971..4f53bee76d 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/validation/mixins/form-control.mixin.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/validation/mixins/form-control.mixin.ts @@ -31,7 +31,7 @@ interface Validator { } export interface UmbFormControlMixinInterface extends HTMLElement { - //formAssociated: boolean; + //static formAssociated: boolean; getFormElement(): HTMLElement | undefined; get value(): ValueType | DefaultValueType; set value(newValue: ValueType | DefaultValueType); @@ -57,7 +57,7 @@ export declare abstract class UmbFormControlMixinElement string, checkMethod: () => boolean) => void; protected addFormControlElement(element: NativeFormControlElement): void; - //formAssociated: boolean; + //static formAssociated: boolean; abstract getFormElement(): HTMLElement | undefined; get value(): ValueType | DefaultValueType; set value(newValue: ValueType | DefaultValueType);