We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae540f6 commit 2365906Copy full SHA for 2365906
src/Umbraco.Web.UI.Client/src/packages/core/validation/mixins/form-control.mixin.ts
@@ -124,13 +124,7 @@ export function UmbFormControlMixin<
124
* @default
125
*/
126
@property({ reflect: false }) // Do not 'reflect' as the attribute value is used as fallback. [NL]
127
- get value(): ValueType | DefaultValueType {
128
- return this.#value;
129
- }
130
- set value(newValue: ValueType | DefaultValueType) {
131
- this.#value = newValue;
132
- this._runValidators();
133
+ value: ValueType | DefaultValueType;
134
135
// Validation
136
//private _validityState = new UmbValidityState();
0 commit comments