Commit 1d239fe7e2b5416d4ad8d8145a870ac5f77743ef
Exists in
master
and in
4 other branches
Merge branch 'correcoes-programas'
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
src/app/components/proposal-list/proposal-list.directive.js
src/app/components/proposal-list/proposal-list.html
... | ... | @@ -11,9 +11,10 @@ |
11 | 11 | </tr> |
12 | 12 | </thead> |
13 | 13 | <tbody> |
14 | - <tr ng-repeat="proposal in vm.proposals"> | |
14 | + <tr ng-repeat="proposal in vm.proposals | orderBy:'ranking_position'"> | |
15 | 15 | <td class="color-theme-fg"> |
16 | 16 | <span class="position">{{::proposal.ranking_position}}º</span> |
17 | + <!-- {{::proposal}} --> | |
17 | 18 | </td> |
18 | 19 | <td> |
19 | 20 | <div class="row"> | ... | ... |