diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-02-04 11:38:15 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-02-19 17:24:59 +0100 |
commit | b14c9fcdbbc24f3d50c1c04091522470e64ccda9 (patch) | |
tree | 4e3698235280b411ac88b55c12d0340d4c36ad19 | |
parent | 13f92521c22f63140adbf933737e0c5dc988a8d4 (diff) | |
download | gitlab-ce-b14c9fcdbbc24f3d50c1c04091522470e64ccda9.tar.gz |
Fix date in alert saying that build has been erased
-rw-r--r-- | app/views/projects/builds/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/builds/show.html.haml b/app/views/projects/builds/show.html.haml index 624fe81dc85..5809fa2d11b 100644 --- a/app/views/projects/builds/show.html.haml +++ b/app/views/projects/builds/show.html.haml @@ -84,7 +84,7 @@ - else .erased.alert.alert-warning - erased_by = "by #{@build.erased_by.username}" if @build.erased_by - Build has been erased #{erased_by} #{time_ago_with_tooltip(@build.created_at)} + Build has been erased #{erased_by} #{time_ago_with_tooltip(@build.erased_at)} %div#down-build-trace |