mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
Added static design for recommendation stats
refs https://github.com/TryGhost/Product/issues/3864
This commit is contained in:
parent
64388072ee
commit
3995713551
@ -34,6 +34,15 @@ const IncomingRecommendationItem: React.FC<{mention: Mention}> = ({mention}) =>
|
||||
</div>
|
||||
</div>
|
||||
</TableCell>
|
||||
<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 */}
|
||||
<span>12</span>
|
||||
<span className='whitespace-nowrap text-xs text-grey-700'>Subscribers gained</span>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
);
|
||||
};
|
||||
|
@ -56,6 +56,15 @@ const RecommendationItem: React.FC<{recommendation: Recommendation}> = ({recomme
|
||||
</div>
|
||||
</div>
|
||||
</TableCell>
|
||||
<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 */}
|
||||
<span>12</span>
|
||||
<span className='whitespace-nowrap text-xs text-grey-700'>Subscribers from you</span>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user