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

Commented out "Recommending you" stats while we're in QA

no refs
This commit is contained in:
Djordje Vlaisavljevic 2023-09-20 14:30:51 +01:00
parent 8f5ac0620b
commit 9dea3d344a

View file

@ -34,15 +34,15 @@ const IncomingRecommendationItem: React.FC<{mention: Mention}> = ({mention}) =>
</div>
</div>
</TableCell>
<TableCell className='hidden md:!visible md:!table-cell' onClick={showDetails}>
{/* <TableCell className='hidden md:!visible md:!table-cell' onClick={showDetails}>
<div className={`flex grow flex-col`}>
{/* If it's 0 */}
{/* <span className="text-grey-500">-</span> */}
{/* If it's more than 0 */}
If it's 0
<span className="text-grey-500">-</span>
If it's more than 0
<span>12</span>
<span className='whitespace-nowrap text-xs text-grey-700'>Subscribers gained</span>
</div>
</TableCell>
</TableCell> */}
</TableRow>
);
};