I have an array of products that I'm repeating overusing ng-repeat and I am using
<div ng-repeat="product in products | filter:by_colour">
to filter these products by colour. The filter is working but if the product name/description etc contains the colour then the product remains after the filter is applied.
How do I set the filter to only apply to the colour field of my array rather than every field?