diff options
| -rw-r--r-- | CHANGELOG | 1 | ||||
| -rw-r--r-- | app/views/projects/_gitlab.html.haml | 3 | ||||
| -rw-r--r-- | app/views/projects/_project.html.haml | 2 |
3 files changed, 1 insertions, 5 deletions
@@ -7,6 +7,7 @@ v7.11.0 - Add HipChat notifications - Clean up project advanced settings. - Add a GitLab project path parameter to the project API + - Remove projects IDs from dashboard v7.10.1 - Fix failing migration when update to 7.10 from 7.8 and older versions diff --git a/app/views/projects/_gitlab.html.haml b/app/views/projects/_gitlab.html.haml index 9847842..bc7ff0c 100644 --- a/app/views/projects/_gitlab.html.haml +++ b/app/views/projects/_gitlab.html.haml @@ -16,7 +16,6 @@ %table.table.projects-table %thead %tr - %th ID %th Project Name %th Last commit %th Access @@ -27,8 +26,6 @@ - @gl_projects.sort_by(&:name_with_namespace).each do |project| %tr.light %td - \- - %td = project.name_with_namespace %td %small Not added to CI diff --git a/app/views/projects/_project.html.haml b/app/views/projects/_project.html.haml index af2e123..81dbab3 100644 --- a/app/views/projects/_project.html.haml +++ b/app/views/projects/_project.html.haml @@ -1,8 +1,6 @@ - last_commit = project.last_commit %tr.alert{class: commit_status_alert_class(last_commit) } %td - = project.id - %td = link_to project do %strong= project.name %td |
