mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed missing signup button for free portal link
closes https://github.com/TryGhost/Team/issues/1511
This commit is contained in:
parent
2e36656d11
commit
0d5df582f8
1 changed files with 7 additions and 4 deletions
|
@ -5,7 +5,7 @@ import SiteTitleBackButton from '../common/SiteTitleBackButton';
|
|||
import ProductsSection from '../common/ProductsSection';
|
||||
import InputForm from '../common/InputForm';
|
||||
import {ValidateInputForm} from '../../utils/form';
|
||||
import {getSiteProducts, getSitePrices, hasOnlyFreePlan, isInviteOnlySite, freeHasBenefitsOrDescription, hasOnlyFreeProduct, getFreeProductBenefits, getFreeTierDescription} from '../../utils/helpers';
|
||||
import {getSiteProducts, getSitePrices, hasOnlyFreePlan, isInviteOnlySite, freeHasBenefitsOrDescription, hasOnlyFreeProduct, getFreeProductBenefits, getFreeTierDescription, hasFreeProductPrice} from '../../utils/helpers';
|
||||
import {ReactComponent as InvitationIcon} from '../../images/icons/invitation.svg';
|
||||
|
||||
const React = require('react');
|
||||
|
@ -386,7 +386,9 @@ class SignupPage extends React.Component {
|
|||
}
|
||||
|
||||
let label = 'Continue';
|
||||
if (hasOnlyFreePlan({site})) {
|
||||
const showOnlyFree = pageQuery === 'free' && hasFreeProductPrice({site});
|
||||
|
||||
if (hasOnlyFreePlan({site}) || showOnlyFree) {
|
||||
label = 'Sign up';
|
||||
} else {
|
||||
return null;
|
||||
|
@ -465,8 +467,9 @@ class SignupPage extends React.Component {
|
|||
|
||||
const freeBenefits = getFreeProductBenefits({site});
|
||||
const freeDescription = getFreeTierDescription({site});
|
||||
const hasOnlyFree = hasOnlyFreeProduct({site});
|
||||
const sticky = freeBenefits.length || freeDescription;
|
||||
const showOnlyFree = pageQuery === 'free' && hasFreeProductPrice({site});
|
||||
const hasOnlyFree = hasOnlyFreeProduct({site}) || showOnlyFree;
|
||||
const sticky = !showOnlyFree && (freeBenefits.length || freeDescription);
|
||||
|
||||
return (
|
||||
<section>
|
||||
|
|
Loading…
Add table
Reference in a new issue