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:
Diffstat (limited to 'app/assets/javascripts/jobs/components/sidebar_details_block.vue')
-rw-r--r--app/assets/javascripts/jobs/components/sidebar_details_block.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/jobs/components/sidebar_details_block.vue b/app/assets/javascripts/jobs/components/sidebar_details_block.vue
index ad859679a1e..15584922d1f 100644
--- a/app/assets/javascripts/jobs/components/sidebar_details_block.vue
+++ b/app/assets/javascripts/jobs/components/sidebar_details_block.vue
@@ -45,10 +45,10 @@
return `#${this.job.runner.id}`;
},
timeout() {
- let t = `${this.job.timeout.value}`;
+ let t = `${this.job.metadata.used_timeout_human_readable}`;
- if (this.job.timeout.source != null) {
- t += ` (from ${this.job.timeout.source})`;
+ if (this.job.metadata.timeout_source != null) {
+ t += ` (from ${this.job.metadata.timeout_source})`;
}
return t;
@@ -130,7 +130,7 @@
/>
<detail-row
class="js-job-timeout"
- v-if="job.timeout"
+ v-if="job.metadata.used_timeout_human_readable"
title="Timeout"
:help-url="runnerHelpUrl"
:value="timeout"