From 1f06fab8d7f2440c0133962c8db0a6e2b97b0338 Mon Sep 17 00:00:00 2001 From: jan Date: Fri, 29 May 2026 17:35:36 +0200 Subject: [PATCH] Beschreibung allgemeiner Spenden bearbeiten --- src/components/dashboard/dashboard-shell.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/components/dashboard/dashboard-shell.tsx b/src/components/dashboard/dashboard-shell.tsx index 9625d69..4b44170 100644 --- a/src/components/dashboard/dashboard-shell.tsx +++ b/src/components/dashboard/dashboard-shell.tsx @@ -3430,6 +3430,11 @@ export function DashboardShell({ {currencyFormatter.format(donation.amount)} {donation.expenseTitle ? ` ยท ${donation.expenseTitle}` : ""} + {donation.description ? ( + + {donation.description} + + ) : null} setEditingDonationId(donation.id)}> @@ -3473,6 +3478,15 @@ export function DashboardShell({ onChange={(event) => updateDonationDraft(donation, { amount: event.target.value })} fullWidth /> + updateDonationDraft(donation, { description: event.target.value })} + fullWidth + multiline + minRows={2} + />