<form [formGroup]="selectInitiativeForm">
<mat-form-field appearance="fill">
<mat-label>Select Initiative</mat-label>
<mat-select [formControlName]="'initiative'">
<mat-option *ngFor="let initiative of initiatives | async" [value]="initiative._id"
(click)="displayInitiativeData(initiative)">
{{ initiative.name }}
</mat-option>
</mat-select>
</mat-form-field>
</form>
selectInitiativeForm = new FormGroup({
initiative: new FormControl(''),
});
redirectToHomePage() {
this.selectInitiativeForm.controls['initiative'].setValue('');
this.router.navigate(['/']);
}