From 59c4f9f89e015cf8bb3abe467ebd648e29b7e8a9 Mon Sep 17 00:00:00 2001 From: dan Date: Mon, 22 Jul 2019 00:59:58 -0600 Subject: [PATCH] Fix recommendation typo --- .../missionary-form-page.component.html | 6 +++--- .../missionary-form-page/missionary-form-page.component.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Client/src/app/components/missionary-form-page/missionary-form-page.component.html b/Client/src/app/components/missionary-form-page/missionary-form-page.component.html index 3e9f367..ba6a159 100644 --- a/Client/src/app/components/missionary-form-page/missionary-form-page.component.html +++ b/Client/src/app/components/missionary-form-page/missionary-form-page.component.html @@ -207,13 +207,13 @@ - + -
+
{{form.get('collegeRecomendations').errors?.minColleges}}
    -
  1. +
  2. Name diff --git a/Client/src/app/components/missionary-form-page/missionary-form-page.component.ts b/Client/src/app/components/missionary-form-page/missionary-form-page.component.ts index 40fab33..45ef713 100644 --- a/Client/src/app/components/missionary-form-page/missionary-form-page.component.ts +++ b/Client/src/app/components/missionary-form-page/missionary-form-page.component.ts @@ -65,7 +65,7 @@ export class MissionaryFormPageComponent implements OnInit { rateOfSuccess: ['', Validators.required], predestination: ['', Validators.required], fellowshipAssocation: ['', Validators.required], - collegeRecomendations: this.formBuilder.array([this.createCollegeRecommendation(),this.createCollegeRecommendation(),this.createCollegeRecommendation()], this.minCollegeValidator), + collegeRecommendations: this.formBuilder.array([this.createCollegeRecommendation(),this.createCollegeRecommendation(),this.createCollegeRecommendation()], this.minCollegeValidator), admittedWrong: ['', Validators.required], divorced: [undefined, Validators.required], groundsForRemarry: [undefined, Validators.required],