angularjs infinite $ digest Pętla, gdy nie zmienia się zakres

Dostaję poniższy błąd w moim kodzie kątowym. Staram się zrozumieć, dlaczego funkcja getDrawWithResults wywoła cykl trawienia, ponieważ nie ma żadnych skutków ubocznych? Zwraca tylko elementy z listy, które mają właściwość ustawioną na true.

Błąd występuje tylko wtedy, gdy pierwsze użycie getDrawWithResults znajduje się na stronie, jeśli usunę błąd zostanie zatrzymany.

Uncaught Error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting!
Watchers fired in the last 5 iterations: [["getDrawsWithResults(selectedLottery.draws); newVal: []; oldVal: []"],["getDrawsWithResults(selectedLottery.draws); newVal: []; oldVal: []"],["getDrawsWithResults(selectedLottery.draws); newVal: []; oldVal: []"],["getDrawsWithResults(selectedLottery.draws); newVal: []; oldVal: []"],["getDrawsWithResults(selectedLottery.draws); newVal: []; oldVal: []"]]

To jest mój kod:

HTML
<h4 ng-cloak ng-hide="getDrawsWithResults(selectedLottery.draws)">Results of Selected Lottery</h4>

<div class="con" ng-repeat="draw in getDrawsWithResults(selectedLottery.draws)" ng-cloak>
    <h5 class="con__header">[[ draw.date|date:'EEEE d MMMM yyyy - H:mm' ]]</h5>
    <div class="balls-list__outer con__row">
        <div class="balls-list">
            <div class="balls-list__ball__outer" ng-repeat="b in draw.results">
                <button class="balls-list__ball btn btn-con">[[ b ]]</button>
            </div>

        </div>
    </div>
</div>
JS
// return list of draws with results
$scope.getDrawsWithResults = function(draws) {
    return _.filter(draws, function(draw){
        return draw.results && draw.results.length > 0;
    });
}

questionAnswers(2)

yourAnswerToTheQuestion