This commit is contained in:
@@ -3469,15 +3469,6 @@ export function DashboardShell({
|
|||||||
onChange={(event) => updateDonationDraft(donation, { title: event.target.value })}
|
onChange={(event) => updateDonationDraft(donation, { title: event.target.value })}
|
||||||
fullWidth
|
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
|
<TextField
|
||||||
label="Beschreibung"
|
label="Beschreibung"
|
||||||
size="small"
|
size="small"
|
||||||
@@ -3487,6 +3478,15 @@ export function DashboardShell({
|
|||||||
multiline
|
multiline
|
||||||
minRows={2}
|
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
|
<TextField
|
||||||
label="Spendendatum"
|
label="Spendendatum"
|
||||||
type="date"
|
type="date"
|
||||||
|
|||||||
Reference in New Issue
Block a user