Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-17 15:11:53 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-17 15:11:53 +0400
commitb08bb209795dfc4b764679016f43cd483298f52c (patch)
tree6b6b27e1b9c45e19f4f1faf0c0384b09b7f7875f /app/views/issues
parent9115a4f92f03265253c976ca789f799832ad766f (diff)
Fix assign-to-me filter for project issues
Diffstat (limited to 'app/views/issues')
-rw-r--r--app/views/issues/_filter.html.haml4
1 files 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