* @description * Resets the form to an initial value and resets its submitted status. * * @param value The new value for the form.
(value: any = undefined)
| 356 | * @param value The new value for the form. |
| 357 | */ |
| 358 | resetForm(value: any = undefined): void { |
| 359 | this.form.reset(value); |
| 360 | this.submittedReactive.set(false); |
| 361 | } |
| 362 | |
| 363 | private _setUpdateStrategy() { |
| 364 | if (this.options && this.options.updateOn != null) { |
no test coverage detected