Añadida cantidad de post en el panel de admin

This commit is contained in:
2025-11-30 00:29:23 -03:00
parent 78e7df318e
commit 4fe210eab6
2 changed files with 2 additions and 1 deletions

View File

@@ -54,7 +54,7 @@
<TableRow> <TableRow>
<TableCell>@{usuario.username}</TableCell> <TableCell>@{usuario.username}</TableCell>
<TableCell>{usuario.displayName}</TableCell> <TableCell>{usuario.displayName}</TableCell>
<TableCell>?</TableCell> <TableCell class="text-center">{usuario.postsCount}</TableCell>
<TableCell>{usuario.createdAt.replace('Z', ' ').replace('T', ' | ')}</TableCell> <TableCell>{usuario.createdAt.replace('Z', ' ').replace('T', ' | ')}</TableCell>
<TableCell class="flex gap-2"> <TableCell class="flex gap-2">
<Tooltip> <Tooltip>

1
src/types.d.ts vendored
View File

@@ -87,4 +87,5 @@ export interface UserResponseDto {
followersCount: number; followersCount: number;
followingCount: number; followingCount: number;
createdAt: string; createdAt: string;
postsCount: number;
} }