From 9ea162561d4c46d4b7aeb5cdbba300cd52235452 Mon Sep 17 00:00:00 2001 From: Alex Eng Date: Mon, 18 Apr 2016 10:28:52 +1000 Subject: [PATCH] Fix broken color in user profile graph --- .../main/web/src/containers/UserProfile/ContributionChart.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/main/web/src/containers/UserProfile/ContributionChart.jsx b/frontend/src/main/web/src/containers/UserProfile/ContributionChart.jsx index 652ee2513d..857db8d2d4 100644 --- a/frontend/src/main/web/src/containers/UserProfile/ContributionChart.jsx +++ b/frontend/src/main/web/src/containers/UserProfile/ContributionChart.jsx @@ -50,7 +50,7 @@ function convertMatrixDataToChartData (matrixData) { datasets: [ { label: 'Total', - fillColor: 'rgb(84, 102, 122, .05)', + fillColor: 'rgba(84, 102, 122, .05)', strokeColor: 'rgb(84, 102, 122)', pointColor: 'rgb(84, 102, 122)', pointStrokeColor: '#fff',