diff options
| author | Marin Jankovski <marin@gitlab.com> | 2018-04-12 07:54:48 +0000 |
|---|---|---|
| committer | Marin Jankovski <marin@gitlab.com> | 2018-04-12 07:54:48 +0000 |
| commit | b9d868e33d232808a4c964e2e3e28b4874345e73 (patch) | |
| tree | 1332cd623be6c8ea6e7f18c9d00f7c4c86e248cd /app/views | |
| parent | 85b873e9779a40f88cca95579fe254fbeb695ddc (diff) | |
| parent | 11bfc4b29b92a3748423114a0f9576d6b96bc9ff (diff) | |
| download | gitlab-ce-b9d868e33d232808a4c964e2e3e28b4874345e73.tar.gz | |
Merge branch 'fix/gb/fix-pipeline-statuses-illustrations' into 'master'
Fix empty state for build that does not have a trace
Closes #45204
See merge request gitlab-org/gitlab-ce!18278
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/projects/jobs/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/jobs/show.html.haml b/app/views/projects/jobs/show.html.haml index 8beb4ffef45..cbbcc8f1db5 100644 --- a/app/views/projects/jobs/show.html.haml +++ b/app/views/projects/jobs/show.html.haml @@ -55,7 +55,7 @@ - else Job has been erased #{time_ago_with_tooltip(@build.erased_at)} - - if @build.has_trace? + - if @build.running? || @build.has_trace? .build-trace-container.prepend-top-default .top-bar.js-top-bar .js-truncated-info.truncated-info.hidden-xs.pull-left.hidden< |
