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 89219d8 commit 13bcf16Copy full SHA for 13bcf16
src/Umbraco.Web.UI.Client/src/packages/core/validation/mixins/form-control.mixin.ts
@@ -125,11 +125,11 @@ export function UmbFormControlMixin<
125
*/
126
@property({ reflect: false }) // Do not 'reflect' as the attribute value is used as fallback. [NL]
127
get value(): ValueType | DefaultValueType {
128
+ // For some reason we need to keep this as setters and getters for inherited classes for work properly when they override these methods. [NL]
129
return this.#value;
130
}
131
set value(newValue: ValueType | DefaultValueType) {
132
this.#value = newValue;
- this._runValidators();
133
134
135
// Validation
0 commit comments