As on the title my select doesn't seem able to show the selected value, that is for instance, correctly selected...
<md-input-container flex>
<label>Anno selezione</label>
<md-select name="annoSelect" ng-model="vm.anno_attuale"
ng-value="vm.progetto.pprs[$index].anno"
ng-selected="item.selected" >
<md-option ng-repeat="item in vm.progetto.pprs" >
{{vm.progetto.pprs[$index].anno}}
</md-option>
</md-select>
</md-input-container>
I tried with some solutions found on stack, such as that one: Angular : ng-select does not show ng-selected value
but any of them didn't fix the issue... Any idea?