feat(buchhaltung): move collapse arrows to row end, always-visible filters, summary row, sortable transactions, account manage page

This commit is contained in:
Matthias Hochmeister
2026-03-30 11:59:05 +02:00
parent 4e42d4077a
commit 86cb175aeb
4 changed files with 380 additions and 160 deletions

View File

@@ -18,10 +18,10 @@ function BudgetCard({ label, budget, spent }: { label: string; budget: number; s
<Card>
<CardContent>
<Typography variant="subtitle2" color="text.secondary">{label}</Typography>
<Typography variant="h6">{spent.toFixed(2).replace('.', ',')} </Typography>
<Typography variant="h6">{Number(spent).toFixed(2).replace('.', ',')} </Typography>
{budget > 0 && (
<>
<Typography variant="body2" color="text.secondary">Budget: {budget.toFixed(2).replace('.', ',')} </Typography>
<Typography variant="body2" color="text.secondary">Budget: {Number(budget).toFixed(2).replace('.', ',')} </Typography>
<LinearProgress
variant="determinate"
value={utilization}