From 017dfaee6500b10e30e46db0040672f792f360c5 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Mon, 28 Nov 2011 23:29:46 +0200 Subject: [PATCH] Issue sidebar counter should show count of assigned to you --- app/views/layouts/project.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/layouts/project.html.haml b/app/views/layouts/project.html.haml index 20553c94..24a72a45 100644 --- a/app/views/layouts/project.html.haml +++ b/app/views/layouts/project.html.haml @@ -33,8 +33,8 @@ %span{ :class => "number" }= @project.users_projects.count = link_to project_issues_filter_path(@project), :class => (controller.controller_name == "issues") ? "current" : nil do Issues - - if @project.issues.opened.count > 0 - %span{ :class => "number" }= @project.issues.opened.count + - if @project.issues.assigned(current_user).count > 0 + %span{ :class => "number" }= @project.issues.assigned(current_user).count = link_to wall_project_path(@project), :class => current_page?(:controller => "projects", :action => "wall", :id => @project) ? "current" : nil do Wall - if @project.common_notes.today.count > 0