Digest cycle error on $rootScope filter
Have such error:
Error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting!
while trying quick-ng-repeat with filter which is used with $rootScope:
<tr quick-ng-repeat="event in Event.competition.events | filter:values.globalSearchQuery">
Without filter it works fine.
I have the same error showing up using Angular 1.3.6, without a filter
I am also seeing this evaluating the library
I fixed this by using the track by expression:
<fieldset quick-ng-repeat="choice in choices track by $index|filter:{ value: '0' }"
ng-if="$first">
// stuff
</fieldset>
@voronianski @davebream @jadrake75 can you please confirm this helps?
@allaud I just realised that track by simply hides the error, but the filter is ignored. Hope others can confirm.
I'm seeing the same issue, probably because a $watch is being done on the "rhs", which contains filter clauses.
Someone fixed it? I'm facing the same problem..
Hello from 2016, it seems that problem is still around
Repeat over iteratable as function call also throws this error
Example: <tr quick-ng-repeat="event in Event.competition.getEvents()">
Repo looks dead
@segersrobbert I don't use Angular much in my job, so I don't have enough time to dive into each PR. Do you have smth special you need my help with?