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
path: root/app/views
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2018-09-24 14:02:26 +0300
committerAlessio Caiazza <acaiazza@gitlab.com>2018-10-02 18:04:04 +0300
commit703a41f8862c7278559ff13f2aa4f39ffd660c4e (patch)
treef408d57fbb5caaac94ff41b7e942f07c22b6841c /app/views
parentf97ec4b8f44152036a8f8242bcf1584cfbd56cec (diff)
Introduce enqueue_scheduled event
Diffstat (limited to 'app/views')
-rw-r--r--app/views/projects/ci/builds/_build.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/ci/builds/_build.html.haml b/app/views/projects/ci/builds/_build.html.haml
index 1ba8b698fe2..c706703ae6f 100644
--- a/app/views/projects/ci/builds/_build.html.haml
+++ b/app/views/projects/ci/builds/_build.html.haml
@@ -104,9 +104,9 @@
- elsif job.scheduled?
.btn-group
.btn.btn-default.has-tooltip{ disabled: true,
- title: job.build_schedule.execute_at }
+ title: job.scheduled_at }
= sprite_icon('planning')
- = duration_in_numbers(job.build_schedule.execute_in)
+ = duration_in_numbers(job.execute_in)
.btn.btn-default.btn-build.has-tooltip{ title: s_('DelayedJobs|Start now') }
= sprite_icon('play')
.btn.btn-default.btn-build.has-tooltip{ title: s_('DelayedJobs|Unschedule') }