Filtering an Angular 1.2 ng-repeat with “track by” by a boolean property

The track by needs to be at the end of the expression:

<li ng-repeat="person in attendees | filter: {arrived: false } track by person.id">

Leave a Comment