I'm trying to access the minlength error but when I log all the errors it isn't there.
This is my form control
title: new FormControl("", [Validators.minLength(10), Validators.required]),
Here I'm expecting to see both the required and minlength error.
ngOnInit(): void {
  console.log(this.data.get('title')?.errors)
}
but instead, I only see the required one.
Any ideas? Thanks!

