summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/pipelines/charts
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-07-14 12:09:23 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-07-14 12:09:23 +0000
commit0b194c4854f312e36616fccf7c610cb2b0ec6957 (patch)
treef4c3d8ed1cd799e50b979035506675a1d90ad4a9 /app/assets/javascripts/projects/pipelines/charts
parentc1e7698dff17b737299127ecf484443e676cdd4f (diff)
downloadgitlab-ce-0b194c4854f312e36616fccf7c610cb2b0ec6957.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/projects/pipelines/charts')
-rw-r--r--app/assets/javascripts/projects/pipelines/charts/components/pipeline_charts.vue10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/javascripts/projects/pipelines/charts/components/pipeline_charts.vue b/app/assets/javascripts/projects/pipelines/charts/components/pipeline_charts.vue
index 1c4413bef71..0b0560f63c1 100644
--- a/app/assets/javascripts/projects/pipelines/charts/components/pipeline_charts.vue
+++ b/app/assets/javascripts/projects/pipelines/charts/components/pipeline_charts.vue
@@ -225,11 +225,21 @@ export default {
{
name: 'success',
data: this.mergeLabelsAndValues(labels, success),
+ areaStyle: {
+ color: this.$options.successColor,
+ },
+ lineStyle: {
+ color: this.$options.successColor,
+ },
+ itemStyle: {
+ color: this.$options.successColor,
+ },
},
],
};
},
},
+ successColor: '#608b2f',
chartContainerHeight: CHART_CONTAINER_HEIGHT,
timesChartOptions: {
height: INNER_CHART_HEIGHT,