File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/Umbraco.Web.UI.Client/src/packages/core/validation/mixins Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ export function UmbFormControlMixin<
124
124
* @default
125
125
*/
126
126
@property ( { reflect : false } ) // Do not 'reflect' as the attribute value is used as fallback. [NL]
127
- value : ValueType | DefaultValueType = defaultValue as unknown as DefaultValueType ;
127
+ value : ValueType | DefaultValueType ;
128
128
129
129
// Validation
130
130
//private _validityState = new UmbValidityState();
@@ -148,6 +148,7 @@ export function UmbFormControlMixin<
148
148
}
149
149
private _pristine : boolean = true ;
150
150
151
+ #value: ValueType | DefaultValueType = defaultValue as unknown as DefaultValueType ;
151
152
protected _internals : ElementInternals ;
152
153
#form: HTMLFormElement | null = null ;
153
154
#validators: UmbFormControlValidatorConfig [ ] = [ ] ;
You can’t perform that action at this time.
0 commit comments