I have the following situation
I have a select county component
<div class="form-group col-md-4">
<label>Entidade:</label>
<select ng-model="distrito.entidade.idEntidade" class="form-control">
<option value="{{dis.entidade.idEntidade}}" ng-repeat="dis in distritos">{{dis.entidade.nome}}</option>
</select>
</div>
I need this select to be fixed with the option selected and disabled. In case the user can see the entity but does not change it.