I am having an issue with the select option in my code. The person's gender property is assigned 'M' for male, but I need to allow users to change it to 'F' for female.
Here is the HTML code snippet:
<span >
<span >
<span >Gender</span>
<span ></span>
<select name='gender'>
<option [value]='' selected>{{entity.person.sex}}</option>
<option [ngValue]="">{{}}</option>
</select>
</span>
</span>