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
+1 -1
View File
@@ -54,7 +54,7 @@
<TableRow>
<TableCell>@{usuario.username}</TableCell>
<TableCell>{usuario.displayName}</TableCell>
<TableCell>?</TableCell>
<TableCell class="text-center">{usuario.postsCount}</TableCell>
<TableCell>{usuario.createdAt.replace('Z', ' ').replace('T', ' | ')}</TableCell>
<TableCell class="flex gap-2">
<Tooltip>
+1
View File
@@ -87,4 +87,5 @@ export interface UserResponseDto {
followersCount: number;
followingCount: number;
createdAt: string;
postsCount: number;
}