I'm running into an issue with setting the first element in my ng-repeat list within a select input. Here is the code snippet causing the problem:
<div>
<span >OF</span>
<select ng-model="eclatementCourante.ordreFabricationId" ng-change="dupOF(eclatementCourante.ordreFabricationId)">
<option ng-repeat="pi in listGammeOF" value="{{pi.id}}">{{pi.numero}}
</option>
</select>
</div>
Appreciate any assistance provided. Thank you!