diff --git a/libs/reactive-forms/src/lib/form-array.ts b/libs/reactive-forms/src/lib/form-array.ts index 6d3f1ef..46571b7 100644 --- a/libs/reactive-forms/src/lib/form-array.ts +++ b/libs/reactive-forms/src/lib/form-array.ts @@ -140,8 +140,8 @@ export class FormArray< } markAsTouched( - ...opts: Parameters - ): ReturnType { + ...opts: Parameters + ): ReturnType { super.markAsTouched(...opts); this.touchChanges.next(true); } diff --git a/libs/reactive-forms/src/lib/form-control.ts b/libs/reactive-forms/src/lib/form-control.ts index b1861d8..ba1c320 100644 --- a/libs/reactive-forms/src/lib/form-control.ts +++ b/libs/reactive-forms/src/lib/form-control.ts @@ -96,8 +96,8 @@ export class FormControl extends UntypedFormControl { } markAsTouched( - ...opts: Parameters - ): ReturnType { + ...opts: Parameters + ): ReturnType { super.markAsTouched(...opts); this.touchChanges.next(true); } diff --git a/libs/reactive-forms/src/lib/form-group.ts b/libs/reactive-forms/src/lib/form-group.ts index 44f2f13..b403a45 100644 --- a/libs/reactive-forms/src/lib/form-group.ts +++ b/libs/reactive-forms/src/lib/form-group.ts @@ -124,8 +124,8 @@ export class FormGroup> extends UntypedFormGroup { } markAsTouched( - ...opts: Parameters - ): ReturnType { + ...opts: Parameters + ): ReturnType { super.markAsTouched(...opts); this.touchChanges.next(true); }