Commit 86ed2e8f1743e82b3fafffc8ad3fa66cb87a3336

Authored by Dmitriy Zaporozhets
1 parent 39339305

Fixed MR count on dashboard

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/views/layouts/application.html.haml
... ... @@ -15,7 +15,7 @@
15 15 = nav_link(path: 'dashboard#merge_requests') do
16 16 = link_to dashboard_merge_requests_path do
17 17 Merge Requests
18   - %span.count= current_user.cared_merge_requests.count
  18 + %span.count= current_user.cared_merge_requests.opened.count
19 19 = nav_link(path: 'search#show') do
20 20 = link_to "Search", search_path
21 21 = nav_link(path: 'help#index') do
... ...