I'm looking to toggle between options in a select field and display another input depending on my selection.
Ownership:
<select ngModel="selectedValue">
<option value="true">Owned</option>
<option value="false">Not Owned</option>
</select>
<input *ngIf="selectedValue==false" type="date">