How can I make sure a complete row is unique in AngularJS?
<tr ng-repeat="service in services" >
I'm aware of the existing unique filter discussed here. However this only explains how to unique filter over one column. I would like to do it for on multiple columns. For example:
<tr ng-repeat="service in services | unique:['category','type','quantity'] >