Skip to content

Commit 13bcf16

Browse files
committed
revert
1 parent 89219d8 commit 13bcf16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Umbraco.Web.UI.Client/src/packages/core/validation/mixins/form-control.mixin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ export function UmbFormControlMixin<
125125
*/
126126
@property({ reflect: false }) // Do not 'reflect' as the attribute value is used as fallback. [NL]
127127
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]
128129
return this.#value;
129130
}
130131
set value(newValue: ValueType | DefaultValueType) {
131132
this.#value = newValue;
132-
this._runValidators();
133133
}
134134

135135
// Validation

0 commit comments

Comments
 (0)