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; }