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:
authorgitlabhq <m@gitlabhq.com>2011-11-11 19:45:44 +0400
committergitlabhq <m@gitlabhq.com>2011-11-11 19:45:44 +0400
commit03b9369007b01df74e1032a4eb958419f420d27d (patch)
tree31e68a46be9a112a77e57cad4cd4ba739a9e0ca7 /app/helpers/dashboard_helper.rb
parent6f915d5a016e97ccb882d2fc8a53f2dc6b492088 (diff)
fixed link to issue from project dashboard
Diffstat (limited to 'app/helpers/dashboard_helper.rb')
-rw-r--r--app/helpers/dashboard_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/dashboard_helper.rb b/app/helpers/dashboard_helper.rb
index 422097d1d2b..218be8a1baa 100644
--- a/app/helpers/dashboard_helper.rb
+++ b/app/helpers/dashboard_helper.rb
@@ -1,7 +1,7 @@
module DashboardHelper
def dashboard_feed_path(project, object)
case object.class.name.to_s
- when "Issue" then project_issues_path(project, project.issues.find(object.id))
+ when "Issue" then project_issue_path(project, project.issues.find(object.id))
when "Grit::Commit" then project_commit_path(project, project.repo.commits(object.id).first)
when "Note"
then