0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added breakline in free plan description

This commit is contained in:
Peter Zimon 2020-07-22 10:50:24 +02:00
parent 31407ba6a3
commit 0486f04c7d

View file

@ -155,7 +155,7 @@ function Checkbox({name, onPlanSelect, isChecked}) {
function PriceLabel({name, currency, price}) {
if (name === 'Free') {
return (
<div className='gh-portal-plan-note'>Access free members-only posts</div>
<div className='gh-portal-plan-note'>Access free<br/>members-only posts</div>
);
}
const type = name === 'Monthly' ? 'month' : 'year';