This commit is contained in:
@@ -3469,15 +3469,6 @@ export function DashboardShell({
|
||||
onChange={(event) => updateDonationDraft(donation, { title: event.target.value })}
|
||||
fullWidth
|
||||
/>
|
||||
<TextField
|
||||
label="Betrag in EUR"
|
||||
type="number"
|
||||
size="small"
|
||||
inputProps={{ min: 0.01, step: 0.01 }}
|
||||
value={draft.amount}
|
||||
onChange={(event) => updateDonationDraft(donation, { amount: event.target.value })}
|
||||
fullWidth
|
||||
/>
|
||||
<TextField
|
||||
label="Beschreibung"
|
||||
size="small"
|
||||
@@ -3487,6 +3478,15 @@ export function DashboardShell({
|
||||
multiline
|
||||
minRows={2}
|
||||
/>
|
||||
<TextField
|
||||
label="Betrag in EUR"
|
||||
type="number"
|
||||
size="small"
|
||||
inputProps={{ min: 0.01, step: 0.01 }}
|
||||
value={draft.amount}
|
||||
onChange={(event) => updateDonationDraft(donation, { amount: event.target.value })}
|
||||
fullWidth
|
||||
/>
|
||||
<TextField
|
||||
label="Spendendatum"
|
||||
type="date"
|
||||
|
||||
Reference in New Issue
Block a user