I'm working with a nested ng-repeat setup like this:
<div ng-repeat="item_l in list1">
<div ng-repeat="item_f in list2">
{{item_f}} {{item_l}}
</div>
</div>
Currently, this code is producing around 20 results. However, I only need to display 5 of them. How can I achieve this?