1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

#23 added comment_count and last_seen to lab

This commit is contained in:
Fedor Katurov 2021-03-24 17:11:37 +07:00
parent 5f938cfa92
commit e2d1b660cc
6 changed files with 77 additions and 20 deletions

View file

@ -12,7 +12,12 @@ const LabGrid: FC<IProps> = () => {
return (
<div className={styles.wrap}>
{nodes.map(node => (
<LabNode node={node.node} key={node.node.id} />
<LabNode
node={node.node}
key={node.node.id}
lastSeen={node.last_seen}
commentCount={node.comment_count}
/>
))}
</div>
);