Changed the dashboards

This commit is contained in:
2026-06-18 15:21:56 +02:00
parent 3f839bc0fc
commit 0898ad4ebf
7 changed files with 147 additions and 28 deletions
+5 -5
View File
@@ -28,11 +28,11 @@ function getStatusDistribution() {
})
return [
{ name: "Open", value: statusCounts.open, color: "#3b82f6" },
{ name: "Contacted", value: statusCounts.contacted, color: "#f59e0b" },
{ name: "Pending", value: statusCounts.pending, color: "#8b5cf6" },
{ name: "Closed", value: statusCounts.closed, color: "#10b981" },
{ name: "Ignored", value: statusCounts.ignored, color: "#6B7280" },
{ name: "Open", value: statusCounts.open, color: "#0d9488" },
{ name: "Contacted", value: statusCounts.contacted, color: "#5eead4" },
{ name: "Pending", value: statusCounts.pending, color: "#c9a96e" },
{ name: "Closed", value: statusCounts.closed, color: "#f43f5e" },
{ name: "Ignored", value: statusCounts.ignored, color: "#94a3b8" },
]
}