I have a filter like so:
<tr ng-repeat="c in CategoryList | filter: {CategoryOption.CategoryOptionID: FilterByType}">
The value: FilterByType gets set from a dropdown list not shown.
This works just fine, except if the FilterByType value is a 2, for example, then it will filter the results to show 2, 22, 32, 42, etc. It's not a true number compare. It's more like a string.contains kinda thing.
Any idea how I can lock this down?