From b08bb209795dfc4b764679016f43cd483298f52c Mon Sep 17 00:00:00 2001
From: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Date: Thu, 17 Jan 2013 13:11:53 +0200
Subject: [PATCH] Fix assign-to-me filter for project issues

---
 app/views/issues/_filter.html.haml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/views/issues/_filter.html.haml b/app/views/issues/_filter.html.haml
index 9b710a71772..779e55bb7af 100644
--- a/app/views/issues/_filter.html.haml
+++ b/app/views/issues/_filter.html.haml
@@ -4,8 +4,8 @@
       %li{class: ("active" if !params[:status])}
         = link_to project_issues_path(@project, status: nil) do
           Open
-      %li{class: ("active" if params[:status] == 'to_me')}
-        = link_to project_issues_path(@project, status: 'to_me') do
+      %li{class: ("active" if params[:status] == 'assigned-to-me')}
+        = link_to project_issues_path(@project, status: 'assigned-to-me') do
           Assigned To Me
       %li{class: ("active" if params[:status] == 'closed')}
         = link_to project_issues_path(@project, status: 'closed') do
-- 
GitLab