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:
parent
c2b49028f1
commit
032e86c12e
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue