Commit 8ca06871 authored by Jose Vargas's avatar Jose Vargas

Changed the column order in the jobs table

This changes the name column position to be second
one after the status column in the jobs table inside
the `CI/CD -> Jobs` page

Changelog: changed
parent 622b405e
......@@ -12,12 +12,15 @@
%td.status
= render "ci/status/badge", status: job.detailed_status(current_user), title: job.status_title
%td.branch-commit.cgray
%td
- if can?(current_user, :read_build, job)
= link_to project_job_path(job.project, job) do
%span.build-link ##{job.id}
= link_to job.name, project_job_path(job.project, job), class: 'gl-text-blue-600!'
- else
%span.build-link ##{job.id}
%span.gl-text-blue-600!
= job.name
%td.branch-commit.gl-text-gray-900
%span.build-link ##{job.id}
- if ref
- if job.ref
......@@ -78,9 +81,6 @@
%td
= job.stage
%td
= job.name
%td
- if job.duration
%p.duration
......
......@@ -21,13 +21,13 @@
%thead
%tr
%th Status
%th Name
%th Job
%th Pipeline
- if admin
%th Project
%th Runner
%th Stage
%th Name
%th Duration
%th Coverage
%th
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment