I have a select tag with a function call in ng-options:
<select ng-model='selectedList'
ng-options='list.id as list.label
for list in listService.computeLists(resume)'
>
that's causing a repeating infinite digest error.
angular.js:14525 Error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting!
Is there any way to have this function call in ng-options
without getting that error? I've tried memoizing but I couldn't get it to work.