From a65bf2dfaa61c19b7b56d049ffe0c6ce7d79fd8c Mon Sep 17 00:00:00 2001 From: mukeshs Date: Thu, 30 Apr 2026 14:10:12 +0530 Subject: [PATCH] professor and education updated --- .../app/component/education/education.component.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/support-portal-frontend/src/app/component/education/education.component.ts b/support-portal-frontend/src/app/component/education/education.component.ts index a48fbbf..360e7e6 100644 --- a/support-portal-frontend/src/app/component/education/education.component.ts +++ b/support-portal-frontend/src/app/component/education/education.component.ts @@ -44,11 +44,11 @@ export class EducationComponent implements OnInit { this.courseForm = this.fb.group({ title: ['', Validators.required], description: [''], - duration: ['', Validators.required], - seats: ['', [Validators.required, Validators.min(1)]], - category: ['', Validators.required], - level: ['', Validators.required], - instructor: ['', Validators.required], + duration: [''], + seats: [''], + category: [''], + level: [''], + instructor: [''], price: [''], startDate: [''], eligibility: [''], @@ -59,7 +59,7 @@ export class EducationComponent implements OnInit { this.upcomingEventForm = this.fb.group({ title: ['', Validators.required], description: [''], - schedule: ['', Validators.required], + schedule: [''], eventDate: [''], isActive: [true] });