Commit c3e667f969fd098a894d3ce7a9d9277bffcc070e
1 parent
ea6ab2b8
Exists in
profile_api_improvements
and in
1 other branch
responsive: fix typo in tasks count
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
plugins/responsive/views/layouts/_usermenu_logged_in.html.slim
@@ -5,8 +5,8 @@ li.dropdown | @@ -5,8 +5,8 @@ li.dropdown | ||
5 | = image_tag user.profile_custom_icon(gravatar_default), class: 'menu-user-gravatar' | 5 | = image_tag user.profile_custom_icon(gravatar_default), class: 'menu-user-gravatar' |
6 | = content_tag :strong, user.identifier | 6 | = content_tag :strong, user.identifier |
7 | - if pending_tasks_count | 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 | ul class='dropdown-menu' role='menu' | 11 | ul class='dropdown-menu' role='menu' |
12 | li | 12 | li |