Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-25 18:52:32 +00:00
co-authored by renee-png
parent 8f686ca7a5
commit 98a1744f57
+4
View File
@@ -534,6 +534,8 @@ function ExpenseReport() {
<th className="text-left px-4 py-2 font-medium">Case</th>
<th className="text-left px-4 py-2 font-medium">User</th>
<th className="text-left px-4 py-2 font-medium">Description</th>
<th className="text-right px-4 py-2 font-medium">Qty</th>
<th className="text-right px-4 py-2 font-medium">Unit</th>
<th className="text-left px-4 py-2 font-medium">Billable</th>
<th className="text-right px-4 py-2 font-medium">Amount</th>
</tr>
@@ -545,6 +547,8 @@ function ExpenseReport() {
<td className="px-4 py-2">{r.case_label}</td>
<td className="px-4 py-2">{r.user_name}</td>
<td className="px-4 py-2 text-muted-foreground">{r.description}</td>
<td className="px-4 py-2 text-right tabular-nums">{r.quantity}</td>
<td className="px-4 py-2 text-right tabular-nums">{formatCurrency(r.unit_price)}</td>
<td className="px-4 py-2">{r.billable ? "Yes" : "No"}</td>
<td className="px-4 py-2 text-right">{formatCurrency(r.amount)}</td>
</tr>