In the following code if ng-selected value does not become True then why does ng-init not select the option value=3 . If ng-selected becomes true it should show the value selected else the default value i.e, option 3
Right drop down shows no option selected.
<select class="form-control" name="issue" id="issue" ng-model="item.issue" ng-init="item.issue='3'">
<option value="3" ng-selected="item.issue['id'] == '3'">Task</option>
<option value="4" ng-selected="item.issue['id'] == '4'">Task4</option>
</select>