diff options
author | gitlabhq <m@gitlabhq.com> | 2011-11-11 10:45:44 -0500 |
---|---|---|
committer | gitlabhq <m@gitlabhq.com> | 2011-11-11 10:45:44 -0500 |
commit | 03b9369007b01df74e1032a4eb958419f420d27d (patch) | |
tree | 31e68a46be9a112a77e57cad4cd4ba739a9e0ca7 /app/helpers/dashboard_helper.rb | |
parent | 6f915d5a016e97ccb882d2fc8a53f2dc6b492088 (diff) | |
download | gitlab-ce-03b9369007b01df74e1032a4eb958419f420d27d.tar.gz |
fixed link to issue from project dashboard
Diffstat (limited to 'app/helpers/dashboard_helper.rb')
-rw-r--r-- | app/helpers/dashboard_helper.rb | 2 |
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 |