Commit e44b557151ad924bccf477c7b7e1952566cce440
1 parent
6ca6b3cc
Exists in
master
and in
8 other branches
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,8 +59,8 @@ | ||
| 59 | <span class="theme">{{::event.categories[0].name}}</span> | 59 | <span class="theme">{{::event.categories[0].name}}</span> |
| 60 | </td> | 60 | </td> |
| 61 | <td align="right"> | 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 | <br/> | 64 | <br/> |
| 65 | <span>Inscritos</span> | 65 | <span>Inscritos</span> |
| 66 | </div> | 66 | </div> |