Personally I think I'm doing something wrong but I can not find the error in the code.
ul(class='list-group')
li(class="list-group-item", ng-repeat="v in votadas | filter: '-votos'")
h4 Música: {{ v.titulo }} | Votos: {{ v.votos }}
My intention is for the songs to be sorted in the most voted order. When I delete the filter from ng-repeat it works but with the filter nothing happens.
Any light?