Commit c3e667f969fd098a894d3ce7a9d9277bffcc070e

Authored by Braulio Bhavamitra
1 parent ea6ab2b8

responsive: fix typo in tasks count

plugins/responsive/views/layouts/_usermenu_logged_in.html.slim
... ... @@ -5,8 +5,8 @@ li.dropdown
5 5 = image_tag user.profile_custom_icon(gravatar_default), class: 'menu-user-gravatar'
6 6 = content_tag :strong, user.identifier
7 7 - if pending_tasks_count
8   - span class='badge' onclick="document.location='#{url_for(user.tasks_url)}'" title="#{_("Manage your pending tasks")}"
9   - count
  8 + span class='badge' onclick="document.location='#{url_for user.tasks_url}'" title="#{_("Manage your pending tasks")}"
  9 + = pending_tasks_count
10 10  
11 11 ul class='dropdown-menu' role='menu'
12 12 li
... ...