if I have a select element like this:
<select
ng-model="dispatchOutput"
ng-options="item as (item.output | uppercase) for item in searchFilterDispatcher.params"
class="form-control"
id="dispatchOutput" >
that populate the select with elements from a list of object that have the possibility to have multiple Strins with the same values, how can I avoid to show duplicate entries?