The selected date from the mat date picker and its value in the reactive form is not matching.
ngOnInit() {
this.findForm = this._fb.group({
date: ['', Validators.required]
});
}
And in the template,
<mat-form-field [formGroup]="findForm">
<input matInput formControlName="date" [matDatepicker]="picker" placeholder="Choose a date">
<mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>
<pre>{{this.findForm.get('date').value |json }}</pre>
I have the full working code on stackblitz
Select a date and you see the selected date and its value in the reactive form is not same.