From 032e86c12ecf38bfad251945a083e105a0788f48 Mon Sep 17 00:00:00 2001 From: Peter Zimon Date: Wed, 11 May 2022 12:20:20 +0200 Subject: [PATCH] Fixed Paid breakdown chart bar thickness --- .../app/components/dashboard/v5/charts/paid-breakdown.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/admin/app/components/dashboard/v5/charts/paid-breakdown.js b/ghost/admin/app/components/dashboard/v5/charts/paid-breakdown.js index fa99ffafcf..8360ac499e 100644 --- a/ghost/admin/app/components/dashboard/v5/charts/paid-breakdown.js +++ b/ghost/admin/app/components/dashboard/v5/charts/paid-breakdown.js @@ -62,9 +62,9 @@ export default class PaidBreakdown extends Component { const canceledData = stats.map(stat => -stat.negativeDelta); let barThickness = 5; - if (newData.length > 30) { + if (newData.length > 30 + 1) { barThickness = 2; - } else if (newData.length > 90) { + } else if (newData.length > 90 + 1) { barThickness = 1; }