I'm on Angular, I created a form. And when I arrive on the page the select works but nothing is displayed.
<select formControlName="breed" required>
<option value="undefined" selected="true">{{ 'pet.choose_breed' | translate }}</option>
</select>
The result is as follows:
I would like it to give this:
The problem probably comes from the value, I modified it several times but nothing works.