-
{{ ticketStats.resolved }}
-
Résolus
+
{{ ticketStats.closed }}
+
Fermés
{{ ticketStats.total }}
@@ -70,12 +70,6 @@
{{ selectedStatus ? `Aucun ticket avec le statut "${getStatusLabel(selectedStatus)}"` : 'Vous n\'avez pas encore créé de ticket' }}
-
@@ -356,7 +350,7 @@ const ticketStats = computed(() => {
const stats = {
open: tickets.value.filter(t => t.status === 'open').length,
in_progress: tickets.value.filter(t => t.status === 'in_progress').length,
- resolved: tickets.value.filter(t => t.status === 'resolved').length,
+ closed: tickets.value.filter(t => t.status === 'closed').length,
total: tickets.value.length
}
return stats
@@ -378,7 +372,6 @@ function getStatusLabel(status) {
const labels = {
'open': 'Ouvert',
'in_progress': 'En cours',
- 'resolved': 'Résolu',
'closed': 'Fermé'
}
return labels[status] || status
@@ -409,7 +402,7 @@ function getStatusBadgeClass(status) {
const classes = {
'open': 'bg-blue-100 text-blue-800',
'in_progress': 'bg-yellow-100 text-yellow-800',
- 'resolved': 'bg-green-100 text-green-800',
+
'closed': 'bg-gray-100 text-gray-800'
}
return classes[status] || 'bg-gray-100 text-gray-800'
diff --git a/frontend/src/views/Vlogs.vue b/frontend/src/views/Vlogs.vue
index a26313d..426752d 100755
--- a/frontend/src/views/Vlogs.vue
+++ b/frontend/src/views/Vlogs.vue
@@ -116,7 +116,16 @@
class="fixed inset-0 bg-black bg-opacity-50 z-50 flex items-center justify-center p-4"
>