From 3a26f0346a3d99c75b7d74b76cda8a09fde235fe Mon Sep 17 00:00:00 2001 From: Paul Oremland Date: Wed, 23 Jan 2013 22:44:39 -0800 Subject: [PATCH] Update app/views/projects/graph.html.haml Fix the broken commit_url. --- app/views/projects/graph.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/projects/graph.html.haml b/app/views/projects/graph.html.haml index 4e0b0e36c34..4149850c7e7 100644 --- a/app/views/projects/graph.html.haml +++ b/app/views/projects/graph.html.haml @@ -11,6 +11,6 @@ $(function(){ branch_graph = new BranchGraph($("#holder"), { url: '#{url_for controller: 'projects', action: 'graph', format: :json}', - commit_url: '#{url_for controller: 'projects', action: 'show'}/commits/%s' + commit_url: '#{url_for controller: 'projects', action: 'show'}/commit/%s' }); }); -- GitLab