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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-25 21:08:35 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-25 21:08:35 +0300
commit6fdf80d94aa10083253dad7d0eaa6204be29c843 (patch)
tree3fa886e6e15ea7577df9c1320bc52dc8065e7f21 /app
parent0d8e625e4cd499162e6113dca4988b28f9faa9b6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/pipelines/pipeline_details_bundle.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/assets/javascripts/pipelines/pipeline_details_bundle.js b/app/assets/javascripts/pipelines/pipeline_details_bundle.js
index e5ac7775476..ae67fe8b888 100644
--- a/app/assets/javascripts/pipelines/pipeline_details_bundle.js
+++ b/app/assets/javascripts/pipelines/pipeline_details_bundle.js
@@ -147,6 +147,9 @@ const createTestDetails = detailsEndpoint => {
const createDagApp = () => {
const el = document.querySelector('#js-pipeline-dag-vue');
+ if (!el) {
+ return;
+ }
const graphUrl = el.dataset?.pipelineDataPath;
// eslint-disable-next-line no-new
new Vue({