Fix sattellites
This commit is contained in:
parent
23734a715e
commit
ab42370af0
3 changed files with 11 additions and 6 deletions
|
@ -7,4 +7,8 @@ module DashboardHelper
|
|||
dashboard_merge_requests_path(options)
|
||||
end
|
||||
end
|
||||
|
||||
def entities_per_project project, entity
|
||||
project.items_for(entity).where(assignee_id: current_user.id).count
|
||||
end
|
||||
end
|
||||
|
|
|
@ -21,10 +21,11 @@
|
|||
%legend Projects:
|
||||
%ul.nav.nav-pills.nav-stacked
|
||||
- @projects.each do |project|
|
||||
%li{class: ("active" if params[:project_id] == project.id.to_s)}
|
||||
= link_to dashboard_filter_path(entity, project_id: project.id) do
|
||||
= project.name_with_namespace
|
||||
%small.right= project.items_for(entity).where(assignee_id: current_user.id).count
|
||||
- unless entities_per_project(project, entity).zero?
|
||||
%li{class: ("active" if params[:project_id] == project.id.to_s)}
|
||||
= link_to dashboard_filter_path(entity, project_id: project.id) do
|
||||
= project.name_with_namespace
|
||||
%small.right= entities_per_project(project, entity)
|
||||
|
||||
%fieldset
|
||||
%hr
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue