I'm having problems on filtering an array of String with ng-options
Assuming I have an array of this type
$scope.params.output = ["A","B","A","B","A","B"];
and an HTML of this type:
ng-options="item as item for item in params.output | unique : 'item'"
my select renders all the array, without filtering it, where did i get wrong?