outcommented concept

This commit is contained in:
Niels Lyngsø
2024-08-06 21:40:58 +02:00
parent 88ca32fe65
commit 3f7b9ed74b

View File

@@ -131,6 +131,10 @@ export function UmbFormControlMixin<
public set pristine(value: boolean) {
if (this._pristine !== value) {
this._pristine = value;
// Concept: maybe needed? Set all inner form controls to be 'touched' as well. [NL]
/*this.#formCtrlElements.forEach((el) => {
(el as any).pristine = value;
});*/
this.#dispatchValidationState();
}
}