Is there a way to conditionally display select options like this?
<select id="updateType" class="form-control" formControlName="updateType">
<option value="personalDetails">Personal</option>
<option value="addressDetails">Address}</option>
<option *ngIf="{{userModalData.orgTypeCode == 'BO'}}" value="financialDetails">Financial</option>
<!-- Fake Implementation -->
</select>
Looking for suggestions on how to achieve this. Any ideas?