diff --git a/ghost/admin/app/components/modal-tier.hbs b/ghost/admin/app/components/modal-tier.hbs
index 1f7d4cc8aa..e5569c49f0 100644
--- a/ghost/admin/app/components/modal-tier.hbs
+++ b/ghost/admin/app/components/modal-tier.hbs
@@ -219,7 +219,7 @@
0
{{else}}
- {{#if this.isFreeTierEnabled}}
+ {{#if this.isFreeTrialEnabled}}
{{ this.tier.trialDays }} days free
diff --git a/ghost/admin/app/components/modal-tier.js b/ghost/admin/app/components/modal-tier.js
index 649599c1de..45398b8d58 100644
--- a/ghost/admin/app/components/modal-tier.js
+++ b/ghost/admin/app/components/modal-tier.js
@@ -62,7 +62,7 @@ export default class ModalTierPrice extends ModalBase {
return CURRENCIES.findBy('value', this.currency);
}
- get isFreeTierEnabled() {
+ get isFreeTrialEnabled() {
return this.feature.get('freeTrial') && this.freeTrialEnabled && this.tier.get('trialDays') > 0;
}