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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-12-15 03:13:13 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-12-15 03:13:13 +0300
commit77e775460553ceadedada8779b474e9ecde3e42d (patch)
tree8dba88a4082ffd0d4b586f525e0a28994195350e /app/assets/javascripts/projects/pipelines
parent30f908f6b9689ecda34474e68c55ce4dba1a9974 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/projects/pipelines')
-rw-r--r--app/assets/javascripts/projects/pipelines/charts/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/javascripts/projects/pipelines/charts/index.js b/app/assets/javascripts/projects/pipelines/charts/index.js
index ff8f97faffa..94d32609e5d 100644
--- a/app/assets/javascripts/projects/pipelines/charts/index.js
+++ b/app/assets/javascripts/projects/pipelines/charts/index.js
@@ -11,7 +11,7 @@ const apolloProvider = new VueApollo({
});
const mountPipelineChartsApp = (el) => {
- const { projectPath, failedPipelinesLink } = el.dataset;
+ const { projectPath, failedPipelinesLink, coverageChartPath, defaultBranch } = el.dataset;
const shouldRenderDoraCharts = parseBoolean(el.dataset.shouldRenderDoraCharts);
const shouldRenderQualitySummary = parseBoolean(el.dataset.shouldRenderQualitySummary);
@@ -28,6 +28,8 @@ const mountPipelineChartsApp = (el) => {
failedPipelinesLink,
shouldRenderDoraCharts,
shouldRenderQualitySummary,
+ coverageChartPath,
+ defaultBranch,
},
render: (createElement) => createElement(ProjectPipelinesCharts, {}),
});