I cannot figure out why the initial selection is not working in this code. Everything else is just fine. The options are all there, etc...
<select id="userEmail" class="form-control"
data-ng-init="userSelection = users[0]"
data-ng-model="userSelection"
data-ng-options="user.email for user in users">
</select>
Also the variant with userSelection = userSelection || users[0] does not work.