From 368cbe30675edeffbe90f494806d6f9e6b34c7ee Mon Sep 17 00:00:00 2001 From: Jeremy Maziarz Date: Mon, 6 Oct 2014 19:19:21 -0400 Subject: Fix link paths for http and ssh in admin project show view --- app/views/admin/projects/show.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/admin/projects/show.html.haml b/app/views/admin/projects/show.html.haml index 6d536199851..c7ea430acfd 100644 --- a/app/views/admin/projects/show.html.haml +++ b/app/views/admin/projects/show.html.haml @@ -42,11 +42,11 @@ %li %span.light http: %strong - = link_to @project.http_url_to_repo + = link_to @project.http_url_to_repo, project_path(@project) %li %span.light ssh: %strong - = link_to @project.ssh_url_to_repo + = link_to @project.ssh_url_to_repo, project_path(@project) - if @project.repository.exists? %li %span.light fs: -- cgit v1.2.1