diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2018-10-15 14:27:15 +0100 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2018-10-15 14:27:15 +0100 |
commit | fe47a01ac5a1328bd29d4f78c7319f4c2b53a567 (patch) | |
tree | eab2deb86b4e2e06b9d825b6148a1f795b806343 | |
parent | cf29b815a576b37a25900d1df6ea653f923fca94 (diff) | |
download | gitlab-ce-fe47a01ac5a1328bd29d4f78c7319f4c2b53a567.tar.gz |
Fixes conflicts for app/assets/javascripts/jobs/components/sidebar.vue
-rw-r--r-- | app/assets/javascripts/jobs/components/sidebar.vue | 34 |
1 files changed, 1 insertions, 33 deletions
diff --git a/app/assets/javascripts/jobs/components/sidebar.vue b/app/assets/javascripts/jobs/components/sidebar.vue index e757213a502..f2d98b08933 100644 --- a/app/assets/javascripts/jobs/components/sidebar.vue +++ b/app/assets/javascripts/jobs/components/sidebar.vue @@ -35,9 +35,8 @@ default: null, }, }, -<<<<<<< HEAD computed: { - ...mapState(['job', 'isLoading', 'stages', 'jobs']), + ...mapState(['job', 'isLoading', 'stages', 'jobs', 'selectedStage']), coverage() { return `${this.job.coverage}%`; }, @@ -64,37 +63,6 @@ if (this.job.metadata == null) { return ''; } -======= - }, - computed: { - ...mapState(['job', 'isLoading', 'stages', 'jobs', 'selectedStage']), - coverage() { - return `${this.job.coverage}%`; - }, - duration() { - return timeIntervalInWords(this.job.duration); - }, - queued() { - return timeIntervalInWords(this.job.queued); - }, - runnerId() { - return `${this.job.runner.description} (#${this.job.runner.id})`; - }, - retryButtonClass() { - let className = - 'js-retry-button float-right btn btn-retry d-none d-md-block d-lg-block d-xl-block'; - className += - this.job.status && this.job.recoverable ? ' btn-primary' : ' btn-inverted-secondary'; - return className; - }, - hasTimeout() { - return this.job.metadata != null && this.job.metadata.timeout_human_readable !== null; - }, - timeout() { - if (this.job.metadata == null) { - return ''; - } ->>>>>>> 7e342757e28... Merge branch '52618-incorrect-stage-being-shown-in-side-bar-of-job-view-api' into 'master' let t = this.job.metadata.timeout_human_readable; if (this.job.metadata.timeout_source !== '') { |