0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Updated copy

refs https://github.com/TryGhost/Product/issues/4030
This commit is contained in:
Djordje Vlaisavljevic 2023-10-17 10:41:19 +01:00
parent 73aa6bc22e
commit fe90778816
3 changed files with 3 additions and 4 deletions

View file

@ -105,7 +105,7 @@ const Recommendations: React.FC<{ keywords: string[] }> = ({keywords}) => {
];
const groupDescription = (
<>Recommend any publication you think your audience will find valuable, and find out when others are recommending you.</>
<>Recommend any publication that your audience will find valuable, and find out when others are recommending you.</>
);
// Add a new recommendation

View file

@ -78,7 +78,7 @@ const IncomingRecommendationItem: React.FC<{incomingRecommendation: IncomingReco
<span className='-mb-px inline-block min-w-[60px] whitespace-nowrap text-left text-sm lowercase text-grey-700'>{freeMembersLabel}</span>
</div>)}
</TableCell>
{incomingRecommendation.recommending_back && <TableCell className='w-[1%] whitespace-nowrap group-hover/table-row:visible md:invisible'><div className='mt-1 whitespace-nowrap text-right text-sm text-grey-700'>Recommending back</div></TableCell>}
{incomingRecommendation.recommending_back && <TableCell className='w-[1%] whitespace-nowrap group-hover/table-row:visible md:invisible'><div className='mt-1 whitespace-nowrap text-right text-sm text-grey-700'>Recommending</div></TableCell>}
</TableRow>
);
};
@ -90,7 +90,7 @@ const IncomingRecommendationList: React.FC<IncomingRecommendationListProps> = ({
</Table>;
} else {
return <NoValueLabel>
<span className='max-w-[40ch] text-center'>No ones recommended you yet. Once they do, youll find them here along with how many memberships each has driven.</span>
<span className='max-w-[40ch] text-center'>No one&rsquo;s recommended you yet. Once they do, you&rsquo;ll find them here along with how many memberships they&rsquo;ve driven.</span>
</NoValueLabel>;
}
};

View file

@ -97,7 +97,6 @@ const RecommendationList: React.FC<RecommendationListProps> = ({recommendations,
</Table>;
} else {
return <NoValueLabel>
<span className='mb-2 max-w-[40ch] text-center'>Get started by sharing any publication you think your audience will find valuable.</span>
<Button color='grey' label='Add first recommendation' size='sm' onClick={() => {
openAddNewRecommendationModal();
}}></Button>