Is there a way to filter ng-options with an array? For example:
<select
ng-model="currentItem.Community.white_label_id"
ng-options="whitelabel.WhiteLabel.id as whitelabel.WhiteLabel.name for whitelabel in whitelabels | filter:whitelabel.WhiteLabel.id in currentWhiteLabel.affiliatedids"
>
The currentWhiteLabel.affiliatedids array looks like [73,71]
Any suggestions on how to achieve this?