0
Hello!
I am listing data and at the same time is pointing me error, but I do not know how to correct.

The data being listed comes like this:

Follows my code
<div id="inputGrupo">
    <select class="form-control contaGrupo" name="categoria" id="" ng-model="conta.grupo" required>
        <option value="">Selecione o grupo...</option>
        <option ng-repeat="g in grupos" value="{{ g.idgrupo }}">{{ g.grupo }}</option>
    </select>
</div>
How to correct this error?
I’ll try again, but I’ve tried to do what you suggested I haven’t changed kkk
– GustavoSevero
In the latter case try to define ng-repeat="(key, g) in groups track by key"
– Saymon