I currently have a select element with a data-ng-options attribute:
<select data-ng-model='myValue'>
<option value=''> Default </option>
<option data-ng-repeat="i in item" value='{$ i.value $}'>Option</option>
</select>
My goal is to be able to click on the default option in the dropdown again to trigger a change in value (setting myValue to the default value ''). It seems like this doesn't work when the default option is already selected in the dropdown. How can I address this issue?