Commit e44b557151ad924bccf477c7b7e1952566cce440

Authored by Leonardo Merlin
1 parent 6ca6b3cc

Fix followers count

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/app/components/event-list/event-list.html
... ... @@ -59,8 +59,8 @@
59 59 <span class="theme">{{::event.categories[0].name}}</span>
60 60 </td>
61 61 <td align="right">
62   - <div ng-if="!event.subscribers_count">
63   - <b>(?)</b>
  62 + <div ng-if="event.followers_count > 0">
  63 + <b>{{::event.followers_count}}</b>
64 64 <br/>
65 65 <span>Inscritos</span>
66 66 </div>
... ...