3
I have a value of flagAtivo that is 1 for active and 0 for inactive within a ng-repeat
which I display in a table, but I need this value to be Active if 1 and inactive if 0
<tbody ng-repeat="oper in operadorasCartoes" >
<tr>
<td>{{oper.nome}}</td>
<td>{{oper.cnpj}}</td>
<td>{{oper.flagAtivo}}</td>
</tr>
</tbody>
You can do it by html ?