Good afternoon, I need to remove the blank line that comes as default in the angularjs select, I would like to put a default value instead of the blank line. I researched several forums and tried many options but nothing worked. can you help me?
<divclass="col-md-3">
<label>SubClasse</label>
<select ng-model="modelcompraevenda.subClasse" class="form-control">
<option ng-selected="data.unit == 2" ng-selected="true" ng-repeat="z in modelcompraevenda.listSubClasses" value="{{z.id}}">{{z.descricao}}</option>
</select>
</div>