Fix notification delivery

This commit is contained in:
Omar Roth 2018-07-23 07:50:18 -05:00
parent a1e96d971d
commit baa8a66827
1 changed files with 4 additions and 3 deletions

View File

@ -36,9 +36,10 @@
<div class="pure-g">
<div class="pure-u-1-3">
<a href="/feed/subscriptions" class="pure-menu-heading">
<% notifications = env.get("user").as(User).notifications.size %>
<% if notifications > 0 %>
<center><%= notifications %> <i class="fas fa-bell"></i></center>
<% notification_count = env.get("user").as(User).notifications.size %>
<% puts notification_count %>
<% if notification_count > 0 %>
<center><%= notification_count %> <i class="fas fa-bell"></i></center>
<% else %>
<center><i class="far fa-bell"></i></center>
<% end %>