From 713bc152bde5396bb95a1555907bcd9a2847839d Mon Sep 17 00:00:00 2001 From: Valery Sizov Date: Mon, 2 Feb 2015 14:45:03 -0800 Subject: [PATCH] GitLab.com integration: small view fix --- app/views/importers/githubs/status.html.haml | 2 +- app/views/importers/gitlabs/status.html.haml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/importers/githubs/status.html.haml b/app/views/importers/githubs/status.html.haml index 1c7e8209e6e..af04ae0d1bf 100644 --- a/app/views/importers/githubs/status.html.haml +++ b/app/views/importers/githubs/status.html.haml @@ -17,7 +17,7 @@ %tr{id: "project_#{project.id}", class: "#{project_status_css_class(project.import_status)}"} %td= project.import_source %td - %strong= link_to project.name_with_namespace, project + %strong= link_to project.path_with_namespace, project %td.job-status - if project.import_status == 'finished' %span.cgreen diff --git a/app/views/importers/gitlabs/status.html.haml b/app/views/importers/gitlabs/status.html.haml index 493c938cadb..d2ddd716220 100644 --- a/app/views/importers/gitlabs/status.html.haml +++ b/app/views/importers/gitlabs/status.html.haml @@ -17,7 +17,7 @@ %tr{id: "project_#{project.id}", class: "#{project_status_css_class(project.import_status)}"} %td= project.import_source %td - %strong= link_to project.name_with_namespace, project + %strong= link_to project.path_with_namespace, project %td.job-status - if project.import_status == 'finished' %span.cgreen -- GitLab