I have a filter like :
$scope.Approved = $filter('filter')($scope.Summary.CorpEmployees, { locationId: item.Label, evaluationStatusId: '3' });
For some reason the filter is pulling the records whose evaluationStatusId = 13.
Can somebody pls explain why this is happening?
How can I make sure that my filter pulls only those records whose evaluationStatusId = 3
$scope.Approved = $filter('filter')($scope.Summary.CorpEmployees, { locationId: item.Label, evaluationStatusId: '3' }, true);