From 8be9e0fac2f2e09c8dbbed5951f46f5a1d7a04f2 Mon Sep 17 00:00:00 2001 From: mutugiii Date: Mon, 27 Jan 2025 23:35:43 +0300 Subject: [PATCH] reorder --- src/app/health/health-update.component.html | 4 ++-- src/app/health/health-update.component.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/health/health-update.component.html b/src/app/health/health-update.component.html index 060e438100..713b5586a4 100644 --- a/src/app/health/health-update.component.html +++ b/src/app/health/health-update.component.html @@ -63,10 +63,10 @@ - + - + diff --git a/src/app/health/health-update.component.ts b/src/app/health/health-update.component.ts index 04e0e9580c..19d535264b 100644 --- a/src/app/health/health-update.component.ts +++ b/src/app/health/health-update.component.ts @@ -65,8 +65,8 @@ export class HealthUpdateComponent implements OnInit { emergencyContactType: '', emergencyContact: '', specialNeeds: '', - notes: '', - allergies: '' + allergies: '', + notes: '' }); this.healthForm.controls.emergencyContactType.valueChanges.subscribe(value => { this.healthForm.controls.emergencyContact.setValidators(value === 'email' ? Validators.email : null);