Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bodenmiller <bbodenmiller@hotmail.com>2018-07-05 16:39:29 +0300
committerFilipa Lacerda <filipa@gitlab.com>2018-07-05 16:39:29 +0300
commit7fa509b8ca71dbdfd1567d50201fc8009e0df694 (patch)
tree6ed9bad07c2e149ebf78c2a7b2feb79e7a6cc35f /app/views/projects/jobs
parent2510985f52aa82184fe98dad16d8b2182b80b22a (diff)
fix double "in" in time to artifact deletion
Diffstat (limited to 'app/views/projects/jobs')
-rw-r--r--app/views/projects/jobs/_sidebar.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/jobs/_sidebar.html.haml b/app/views/projects/jobs/_sidebar.html.haml
index 459150c1067..8d890d19278 100644
--- a/app/views/projects/jobs/_sidebar.html.haml
+++ b/app/views/projects/jobs/_sidebar.html.haml
@@ -14,8 +14,8 @@
#{time_ago_with_tooltip(@build.artifacts_expire_at)}
- elsif @build.has_expiring_artifacts?
%p.build-detail-row
- The artifacts will be removed in
- %span= time_ago_with_tooltip @build.artifacts_expire_at
+ The artifacts will be removed
+ #{time_ago_with_tooltip(@build.artifacts_expire_at)}
- if @build.artifacts?
.btn-group.d-flex{ role: :group }