diff --git a/frontend/src/pages/InvoiceManagementPage.tsx b/frontend/src/pages/InvoiceManagementPage.tsx index 2233363..49972a1 100644 --- a/frontend/src/pages/InvoiceManagementPage.tsx +++ b/frontend/src/pages/InvoiceManagementPage.tsx @@ -158,33 +158,37 @@ export default function InvoiceManagementPage() { -
-
- {invoices.length} - Gesamtrechnungen -
-
- - {invoices.filter((i) => i.status === "PAID").length} - - Bezahlt -
-
- - {invoices.filter((i) => i.status === "OVERDUE").length} - - Überfällig -
-
- - {formatCurrency( - invoices - .filter((i) => i.status === "PAID") - .reduce((sum, i) => sum + i.totalAmount, 0) - )} - - Gesamtumsatz -
+
+ + + + + + + + + + + + + + + + + + + +
Gesamtrechnungen{invoices.length}
Bezahlt + {invoices.filter((i) => i.status === "PAID").length} +
Überfällig + {invoices.filter((i) => i.status === "OVERDUE").length} +
Gesamtumsatz + {formatCurrency( + invoices + .filter((i) => i.status === "PAID") + .reduce((sum, i) => sum + i.totalAmount, 0) + )} +