diff options
author | James Fargher <proglottis@gmail.com> | 2019-02-01 07:58:36 +1300 |
---|---|---|
committer | James Fargher <proglottis@gmail.com> | 2019-02-01 13:58:11 +1300 |
commit | 86a313bb41178db2e3cc205d2f9f193d6e929911 (patch) | |
tree | ed29ab2d18c04a515368b9ce34e9d3301fcc07ad /app/assets/javascripts/jobs | |
parent | c12863322595e77b03a5a089ff079bf13574a57b (diff) | |
download | gitlab-ce-86a313bb41178db2e3cc205d2f9f193d6e929911.tar.gz |
Wait for auto-devops CI jobs on the job page
These tests used to wait on the pipeline page which made debugging job
failures difficult
Diffstat (limited to 'app/assets/javascripts/jobs')
-rw-r--r-- | app/assets/javascripts/jobs/components/stages_dropdown.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/javascripts/jobs/components/stages_dropdown.vue b/app/assets/javascripts/jobs/components/stages_dropdown.vue index 91332c21b52..c5076d65ff9 100644 --- a/app/assets/javascripts/jobs/components/stages_dropdown.vue +++ b/app/assets/javascripts/jobs/components/stages_dropdown.vue @@ -39,7 +39,9 @@ export default { <ci-icon :status="pipeline.details.status" class="vertical-align-middle" /> <span class="font-weight-bold">{{ __('Pipeline') }}</span> - <a :href="pipeline.path" class="js-pipeline-path link-commit">#{{ pipeline.id }}</a> + <a :href="pipeline.path" class="js-pipeline-path link-commit qa-pipeline-path" + >#{{ pipeline.id }}</a + > <template v-if="hasRef"> {{ __('from') }} <a :href="pipeline.ref.path" class="link-commit ref-name">{{ pipeline.ref.name }}</a> |