I have a table with results:
<tr ng-repeat="result in results"> <td>{{result.foo}}</td> <td ng-if="result.bar == '1'">it's One!</td> <td ng-if="result.bar != '1'">it's not One! is {{result.bar}}</td> </tr> the 3 are displayed, why the ng-if is not working?
the results are correctly setted in the scope because the "it's not One! is 5 is displayed OK"