diff --git a/modules/ui/src/app/components/dynamic-form/dynamic-form.component.ts b/modules/ui/src/app/components/dynamic-form/dynamic-form.component.ts index bdf03a194..3d6b13016 100644 --- a/modules/ui/src/app/components/dynamic-form/dynamic-form.component.ts +++ b/modules/ui/src/app/components/dynamic-form/dynamic-form.component.ts @@ -99,7 +99,9 @@ export class DynamicFormComponent implements OnInit { formControlName: string ) { if (optionIndex === optionLength - 1) { - this.getControl(formControlName).markAsDirty(); + this.getControl(formControlName).markAsDirty({ + onlySelf: true, + }); } }