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

#23 adde comment_count and last_seen to lab

This commit is contained in:
Fedor Katurov 2021-03-24 14:53:29 +07:00
parent ccec211727
commit 5f938cfa92
4 changed files with 18 additions and 6 deletions

View file

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