Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-20 00:22:01 +00:00
co-authored by renee-png
parent a7cf5d670f
commit 2724f38476
+7
View File
@@ -468,6 +468,13 @@ function CasesList() {
<div className="text-xs text-muted-foreground">{c.case_number}</div>
</td>
<td className="px-4 py-3 text-muted-foreground">{c.client?.name ?? "—"}</td>
<td className="px-4 py-3">
{c.practice_area ? (
<Badge variant="secondary" className="font-normal">{c.practice_area}</Badge>
) : (
<span className="text-muted-foreground">—</span>
)}
</td>
<td className="px-4 py-3">
<Badge variant="outline" className={statusBadgeClass(c.status)}>{c.status.replace("_", " ")}</Badge>
</td>