I have an object and I'm reading it in ng-repeat, but if the id key is equal to 0777 I do not want this position to be displayed,
<div ng-repeat="account in accounts | filter:{accountId :'00777'} ">
{{account.name}} - {{account.accountId}}
</div>
I'm doing the fillter normally, it only displays the object, but trying to use it in a denial way, does not display all the positions of the object.
<div ng-repeat="account in accounts | filter:{accountId :!'00777'} ">
{{account.name}} - {{account.accountId}}
</div>
If someone has already managed to deny filtering in this way and can share it, thank you.