You can save the form initial values:
this.initialValues = this.formGroup.value;
And then pass those values to the reset function:
this.formGroup.reset(this.initialValues);
You can save the form initial values:
this.initialValues = this.formGroup.value;
And then pass those values to the reset function:
this.formGroup.reset(this.initialValues);