Skip to content

Supplemental services implement reactive form

I converted the supplemental-services component to a reactive form using a FormGroup.

Changes:

  • New imports for FormsModule and ReactiveFormsModule are added.
  • A FormGroup is created in the .ts file.
  • The .html elements are now grouped together in a element that uses the FormGroup. This allows each element to access its respective FormControl.
  • A couple new Unit Tests are added.

Merge request reports