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:
authorKamil Trzciński <ayufan@ayufan.eu>2018-05-21 15:28:07 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2018-05-21 15:28:07 +0300
commit98b0ca62c2c24acf0a0bb58a6857f383b3fc90ff (patch)
tree08756e04c32ab9e4e0cd084048d69e58669bdd6f /app/views/shared
parentde3f89a4b6f7f4149e4bca681d68f73edeba6177 (diff)
parent55e2ce762d52e680b45c9b87a238f993485f2866 (diff)
Merge branch '46082-runner-contacted_at-is-not-always-a-time-type' into 'master'
Resolve "Runner#contacted_at is not always a Time type" Closes #46082 See merge request gitlab-org/gitlab-ce!18810
Diffstat (limited to 'app/views/shared')
-rw-r--r--app/views/shared/runners/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/runners/show.html.haml b/app/views/shared/runners/show.html.haml
index 480a224b6d5..93c6ba86640 100644
--- a/app/views/shared/runners/show.html.haml
+++ b/app/views/shared/runners/show.html.haml
@@ -66,6 +66,6 @@
%td Last contact
%td
- if @runner.contacted_at
- #{time_ago_in_words(@runner.contacted_at)} ago
+ = time_ago_with_tooltip @runner.contacted_at
- else
Never