From 704310ba207092b9b2940d5246c10687fe92fc2a Mon Sep 17 00:00:00 2001 From: Rishabh Date: Thu, 12 May 2022 20:21:10 +0530 Subject: [PATCH] Updated tier price to use boolean for active --- ghost/admin/app/components/gh-launch-wizard/connect-stripe.js | 4 ++-- ghost/admin/app/components/gh-launch-wizard/finalise.js | 4 ++-- ghost/admin/app/components/gh-members-payments-setting.js | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ghost/admin/app/components/gh-launch-wizard/connect-stripe.js b/ghost/admin/app/components/gh-launch-wizard/connect-stripe.js index 1cc6af23b8..ef8975d437 100644 --- a/ghost/admin/app/components/gh-launch-wizard/connect-stripe.js +++ b/ghost/admin/app/components/gh-launch-wizard/connect-stripe.js @@ -169,7 +169,7 @@ export default class GhLaunchWizardConnectStripeComponent extends Component { this.tier.set('monthlyPrice', { nickname: 'Monthly', amount: 500, - active: 1, + active: true, description: 'Full access', currency: 'usd', interval: 'month', @@ -178,7 +178,7 @@ export default class GhLaunchWizardConnectStripeComponent extends Component { this.tier.set('yearlyPrice', { nickname: 'Yearly', amount: 5000, - active: 1, + active: true, currency: 'usd', description: yearlyDiscount > 0 ? `${yearlyDiscount}% discount` : 'Full access', interval: 'year', diff --git a/ghost/admin/app/components/gh-launch-wizard/finalise.js b/ghost/admin/app/components/gh-launch-wizard/finalise.js index 579699c0b2..1c4309f0f7 100644 --- a/ghost/admin/app/components/gh-launch-wizard/finalise.js +++ b/ghost/admin/app/components/gh-launch-wizard/finalise.js @@ -25,7 +25,7 @@ export default class GhLaunchWizardFinaliseComponent extends Component { const monthlyPrice = { nickname: 'Monthly', amount: monthlyAmount, - active: 1, + active: true, currency: currency, interval: 'month', type: 'recurring' @@ -33,7 +33,7 @@ export default class GhLaunchWizardFinaliseComponent extends Component { const yearlyPrice = { nickname: 'Yearly', amount: yearlyAmount, - active: 1, + active: true, currency: currency, interval: 'year', type: 'recurring' diff --git a/ghost/admin/app/components/gh-members-payments-setting.js b/ghost/admin/app/components/gh-members-payments-setting.js index 9ef3ed295d..88e419eec7 100644 --- a/ghost/admin/app/components/gh-members-payments-setting.js +++ b/ghost/admin/app/components/gh-members-payments-setting.js @@ -258,7 +258,7 @@ export default Component.extend({ this.tier.set('monthlyPrice', { nickname: 'Monthly', amount: 500, - active: 1, + active: true, description: 'Full access', currency: 'usd', interval: 'month', @@ -267,7 +267,7 @@ export default Component.extend({ this.tier.set('yearlyPrice', { nickname: 'Yearly', amount: 5000, - active: 1, + active: true, currency: 'usd', description: yearlyDiscount > 0 ? `${yearlyDiscount}% discount` : 'Full access', interval: 'year',