2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

Removed extra div when there's no offers to show in the settings group (#19322)

This commit is contained in:
Sodbileg Gansukh 2023-12-12 12:03:43 +07:00 committed by GitHub
parent 090c8b59da
commit 742a743a6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,26 +69,29 @@ const Offers: React.FC<{ keywords: string[] }> = ({keywords}) => {
testId='offers'
title='Offers'
>
<div>
<div className='grid grid-cols-1 gap-4 min-[900px]:grid-cols-3'>
{latestThree.map(offer => (<OfferContainer
key={offer.id}
amount={offer.amount}
cadence={offer.cadence}
currency={offer.currency || 'USD'}
goToOfferEdit={goToOfferEdit}
offerCode={offer.code}
offerId={offer.id}
offerTitle={offer.name}
redemptions={offer.redemption_count}
tier={offer.tier}
type={offer.type}
/>))}
</div>
{allOffers.length > 3 && <div className='mt-4 border-t border-t-grey-200 pt-2'>
<span className='text-xs text-grey-700 dark:text-grey-600'>{allOffers.length} offers in total</span>
</div>}
</div>
{latestThree.length > 0 ?
<div>
<div className='grid grid-cols-1 gap-4 min-[900px]:grid-cols-3'>
{latestThree.map(offer => (<OfferContainer
key={offer.id}
amount={offer.amount}
cadence={offer.cadence}
currency={offer.currency || 'USD'}
goToOfferEdit={goToOfferEdit}
offerCode={offer.code}
offerId={offer.id}
offerTitle={offer.name}
redemptions={offer.redemption_count}
tier={offer.tier}
type={offer.type}
/>))}
</div>
{allOffers.length > 3 && <div className='mt-4 border-t border-t-grey-200 pt-2'>
<span className='text-xs text-grey-700 dark:text-grey-600'>{allOffers.length} offers in total</span>
</div>}
</div> :
null
}
</TopLevelGroup>
);
};