0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed Paid breakdown chart bar thickness

This commit is contained in:
Peter Zimon 2022-05-11 12:20:20 +02:00
parent c2b49028f1
commit 032e86c12e

View file

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