mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Changed portal settings to show free tier name instead of "Free"
refs PROD-255
This commit is contained in:
parent
bba95ce034
commit
b97f91f408
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ const SignupOptions: React.FC<{
|
||||||
tiersCheckboxes.push({
|
tiersCheckboxes.push({
|
||||||
checked: (portalPlans.includes('free')),
|
checked: (portalPlans.includes('free')),
|
||||||
disabled: isDisabled,
|
disabled: isDisabled,
|
||||||
label: 'Free',
|
label: hasPortalImprovements ? tier.name : 'Free',
|
||||||
value: 'free',
|
value: 'free',
|
||||||
onChange: (checked) => {
|
onChange: (checked) => {
|
||||||
if (portalPlans.includes('free') && !checked) {
|
if (portalPlans.includes('free') && !checked) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue