I am currently working on an Angular application and encountering an issue with displaying options. When the page loads, the options are missing, and there is no error being thrown (nothing in the console). I even attempted a simpler version without connecting it to the page model, but still no luck.
<mat-form-field>
<mat-label>Active</mat-label>
<mat-select >
<mat-option value="true" >True</mat-option>
<mat-option value="false">False</mat-option>
</mat-select>
</mat-form-field>
If anyone can spot any issues with how I have implemented this, please let me know. On a side note, I have another mat-form-field above this one that includes an input, and that one is working fine. Thank you for any assistance.