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

Fixed bug with Engagement chart not show paid options

refs: https://github.com/TryGhost/Team/issues/1531
This commit is contained in:
James Morris 2022-04-22 15:46:53 +01:00
parent 2f0a0faba4
commit 84873964b1

View file

@ -88,4 +88,8 @@ export default class Engagement extends Component {
get dataEmailsSent() {
return this.dashboardStats.emailsSent30d ?? 0;
}
get hasPaidTiers() {
return this.dashboardStats.siteStatus?.hasPaidTiers;
}
}